summaryrefslogtreecommitdiff
path: root/src/test/sandbox/setup_sandbox.bat
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/sandbox/setup_sandbox.bat')
-rw-r--r--src/test/sandbox/setup_sandbox.bat11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/sandbox/setup_sandbox.bat b/src/test/sandbox/setup_sandbox.bat
index 235f6724..a3f0bbfe 100644
--- a/src/test/sandbox/setup_sandbox.bat
+++ b/src/test/sandbox/setup_sandbox.bat
@@ -24,10 +24,13 @@ if "!VsInstallDir!"=="" (
24 set VsInstallDir=%%i 24 set VsInstallDir=%%i
25 ) 25 )
26) 26)
27if "!VsInstallDir!"=="" ( 27if not "!VsInstallDir!"=="" (
28 set /P "Confirm=Have found VisualStudio Debugger at '%VsInstallDir%', Do you wish to copy it for use by the Sandbox? (Y / N):" 28 echo.
29 if "%Confirm%"=="Y" ( 29 echo Have found VisualStudio Debugger at '%VsInstallDir%'
30 XCOPY "%VsInstallDir%\Common7\IDE\Remote Debugger\*" ".\Debugger\" /E 30 set /P "Confirm=Do you wish to copy it for use by the Sandbox? (Y / N):"
31 echo Confirm = %Confirm%
32 @if "%Confirm%"=="Y" or "%Confirm%"="y" (
33 XCOPY "%VsInstallDir%\Common7\IDE\Remote Debugger\*" ".\Debugger\" /E /Y
31 ) 34 )
32) 35)
33 36