summaryrefslogtreecommitdiff
path: root/src/test/sandbox/setup_sandbox.bat
diff options
context:
space:
mode:
authorBevan Weiss <bevan.weiss@gmail.com>2024-06-23 14:48:54 +1000
committerBob Arnson <github@bobs.org>2024-07-04 19:25:49 -0400
commit491ffc337a9f5688caccc18cc489bce8056858b6 (patch)
tree92dba5312549f2adefc0921b88b032104bc50038 /src/test/sandbox/setup_sandbox.bat
parentd2582c7bdbb09513849b36a49b5f992c2bc58e78 (diff)
downloadwix-491ffc337a9f5688caccc18cc489bce8056858b6.tar.gz
wix-491ffc337a9f5688caccc18cc489bce8056858b6.tar.bz2
wix-491ffc337a9f5688caccc18cc489bce8056858b6.zip
Added some comments for the menu.
And a fix up for the tests not launching the first try (due to delayed expansion). Also fixed up the copying of the debugger files.
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