From 8a0e5295b4c0b83855d4b51496254a759dfe9dfa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johan=20Bergstr=C3=B6m?= Date: Thu, 14 May 2015 09:35:03 +1000 Subject: [PATCH] build: use backslashes for paths on windows PR-URL: https://github.com/iojs/io.js/pull/1698 Reviewed-By: Yosuke Furukawa Reviewed-By: Roman Reiss --- vcbuild.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vcbuild.bat b/vcbuild.bat index fb6881c..afb19cb 100644 --- a/vcbuild.bat +++ b/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% 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 -- 2.7.4