Skip to content

Commit a55166c

Browse files
committed
Quote the paths in the .cmd files
1 parent 6634c5a commit a55166c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
name: x64_msvc
2121
script:
2222
- cd vs2019
23-
- cmd "/C build_x64.cmd" && x64/Debug/test.exe
23+
- build_x64.cmd && x64/Debug/test.exe
2424
- os: windows
2525
name: x86_msvc
2626
script:
2727
- cd vs2019
28-
- cmd "/C build_x86.cmd"
28+
- 'cmd "/C build_x86.cmd"'
2929
- Win32/Debug/test.exe

vs2019/build_x64.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
rem Build x64 with visualstudio2017buildtools
2-
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat
2+
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat"
33
msbuild stackman.sln /p:Platform=x64

vs2019/build_x86.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
rem Build x86 with visualstudio2017buildtools
2-
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat
2+
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat"
33
msbuild stackman.sln /p:Platform=x86

0 commit comments

Comments
 (0)