From dd37fb4c48dce8fb11e9f83cbed9018b7119f1d4 Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Wed, 18 Mar 2015 21:03:14 -0400 Subject: [PATCH] build: remove incorrect argument in vcbuild.bat This change had been incorrectly committed in f19e9b6 PR-URL: https://github.com/iojs/io.js/pull/1198 Reviewed-By: Rod Vagg --- vcbuild.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcbuild.bat b/vcbuild.bat index 4b0cd730e6129a..aa5b1ed6a55f93 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -172,7 +172,7 @@ if "%test_args%"=="" goto jslint if "%config%"=="Debug" set test_args=--mode=debug %test_args% if "%config%"=="Release" set test_args=--mode=release %test_args% echo running 'python tools/test.py %test_args%' -python tools/test.py --timeout=50 %test_args% +python tools/test.py %test_args% goto jslint :jslint