18 lines
320 B
Batchfile
18 lines
320 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set ELECTRON_RUN_AS_NODE=1
|
|
|
|
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% %*
|
|
|
|
popd
|
|
|
|
endlocal
|
|
exit /b %errorlevel% |