Browse Source

build: use backslashes for paths on windows

PR-URL: https://github.com/iojs/io.js/pull/1698
Reviewed-By: Yosuke Furukawa <furukawa.yosuke@dena.jp>
Reviewed-By: Roman Reiss <me@silverwind.io>
v2.3.1-release
Johan Bergström 10 years ago
parent
commit
8a0e5295b4
  1. 6
      vcbuild.bat

6
vcbuild.bat

@ -174,14 +174,14 @@ if "%config%"=="Debug" set test_args=--mode=debug %test_args%
if "%config%"=="Release" set test_args=--mode=release %test_args% if "%config%"=="Release" set test_args=--mode=release %test_args%
echo running 'cctest' echo running 'cctest'
"%config%\cctest" "%config%\cctest"
echo running 'python tools/test.py %test_args%' echo running 'python tools\test.py %test_args%'
python tools/test.py %test_args% python tools\test.py %test_args%
goto jslint goto jslint
:jslint :jslint
if not defined jslint goto exit if not defined jslint goto exit
echo running jslint 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 goto exit
:create-msvs-files-failed :create-msvs-files-failed

Loading…
Cancel
Save