From b7a19b42240c47878517b66343ef2bba6e761506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Tue, 9 Aug 2016 17:11:07 +0200 Subject: [PATCH] adapt to code.exe --- scripts/code.bat | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/scripts/code.bat b/scripts/code.bat index 4dbf5972dbf..fe8204eba8c 100644 --- a/scripts/code.bat +++ b/scripts/code.bat @@ -8,8 +8,13 @@ pushd %~dp0\.. :: Node modules if not exist node_modules call .\scripts\npm.bat install +for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a +set NAMESHORT=%NAMESHORT: "=% +set NAMESHORT=%NAMESHORT:"=%.exe +set CODE=".build\electron\%NAMESHORT%" + :: Get electron -if not exist .build\electron\code-oss-dev.exe node .\node_modules\gulp\bin\gulp.js electron +if not exist %CODE% node .\node_modules\gulp\bin\gulp.js electron :: Build if not exist out node .\node_modules\gulp\bin\gulp.js compile @@ -23,7 +28,7 @@ set ELECTRON_ENABLE_LOGGING=1 set ELECTRON_ENABLE_STACK_DUMPING=1 :: Launch Code -.\.build\electron\code-oss-dev.exe . %* +%CODE% . %* popd -endlocal \ No newline at end of file +endlocal