CB-12453: Remove unnecessary double quotes from .bat files which are the causes of crash if project path contains spaces

this closes #362
This commit is contained in:
Nikita Matrosov
2017-07-28 14:23:53 +03:00
parent 36d07d7a15
commit 2b53c98cf5
9 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
@ECHO OFF
SET script_path="%~dp0check_reqs"
IF EXIST %script_path% (
node "%script_path%" %*
node %script_path% %*
) ELSE (
ECHO.
ECHO ERROR: Could not find 'check_reqs' script in 'bin' folder, aborting...>&2