Skip to content

Commit 0fa8304

Browse files
committed
Call the batch file properly
1 parent a55166c commit 0fa8304

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
name: x64_msvc
2121
script:
2222
- cd vs2019
23-
- 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"'
29-
- Win32/Debug/test.exe
28+
- ./build_x86.cmd && 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+
call "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+
call "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)