From 98ccaf2ae0fad5688560e3084fc6ebceb985db12 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 3 Feb 2026 20:11:53 -0500 Subject: [PATCH] fix path --- extract-mount-run/extract-mount-run.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extract-mount-run/extract-mount-run.bat b/extract-mount-run/extract-mount-run.bat index fc7dedf..c58c9e3 100644 --- a/extract-mount-run/extract-mount-run.bat +++ b/extract-mount-run/extract-mount-run.bat @@ -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