Skip to content

Commit

Permalink
build: use backslashes for paths on windows
Browse files Browse the repository at this point in the history
PR-URL: #1698
Reviewed-By: Yosuke Furukawa <furukawa.yosuke@dena.jp>
Reviewed-By: Roman Reiss <me@silverwind.io>
  • Loading branch information
jbergstroem committed May 14, 2015
1 parent 4e2f999 commit 8a0e529
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,14 @@ if "%config%"=="Debug" set test_args=--mode=debug %test_args%
if "%config%"=="Release" set test_args=--mode=release %test_args%
echo running 'cctest'
"%config%\cctest"
echo running 'python tools/test.py %test_args%'
python tools/test.py %test_args%
echo running 'python tools\test.py %test_args%'
python tools\test.py %test_args%
goto jslint

:jslint
if not defined jslint goto exit
echo running jslint
%config%\iojs tools/eslint/bin/eslint.js src lib --reset --quiet
%config%\iojs tools\eslint\bin\eslint.js src lib --reset --quiet
goto exit

:create-msvs-files-failed
Expand Down

0 comments on commit 8a0e529

Please sign in to comment.