We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9afcb3 + 1dfb2e1 commit 4eabe80Copy full SHA for 4eabe80
1 file changed
packaging/vc_env_helper.bat
@@ -23,18 +23,10 @@ if "%VSDEVCMD_ARGS%" == "" (
23
24
set DISTUTILS_USE_SDK=1
25
26
-set args=%1
27
-shift
28
-:start
29
-if [%1] == [] goto done
30
-set args=%args% %1
31
32
-goto start
33
-
34
-:done
35
-if "%args%" == "" (
+if "%1"=="" (
36
echo Usage: vc_env_helper.bat [command] [args]
37
echo e.g. vc_env_helper.bat cl /c test.cpp
+ exit /b 1
38
)
39
40
-%args% || exit /b 1
+%* || exit /b 1
0 commit comments