This commit is contained in:
John Doe
2026-02-03 20:11:53 -05:00
parent 385678a343
commit 98ccaf2ae0
+2 -2
View File
@@ -4,8 +4,8 @@ setlocal enabledelayedexpansion
:: Check if already running in spawned window
if "%SPAWNED%"=="1" goto :skip_spawn
:: Spawn new cmd window and run this script
start "" cmd /k "set SPAWNED=1 && call "%~f0" %*"
:: Spawn new cmd window and run this script (using command from PATH)
start "" cmd /k "set SPAWNED=1 && extract-mount-run.bat %*"
exit /b
:skip_spawn