vscode/scripts/node-electron.bat

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
321 B
Batchfile
Raw Normal View History

2017-02-16 14:26:48 +00:00
@echo off
setlocal
set ELECTRON_RUN_AS_NODE=1
2017-02-16 16:03:47 +00:00
2017-02-16 14:26:48 +00:00
pushd %~dp0\..
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%"
%CODE% %*
2017-02-16 14:26:48 +00:00
popd
endlocal
exit /b %errorlevel%