mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:10:43 +00:00
29 lines
895 B
Batchfile
29 lines
895 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set ELECTRON_RUN_AS_NODE=
|
|
|
|
pushd %~dp0\..
|
|
|
|
:: Get Code.exe location
|
|
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%"
|
|
|
|
:: Download Electron if needed
|
|
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"electronVersion\":.*" package.json') do set DESIREDVERSION=%%~a
|
|
set DESIREDVERSION=%DESIREDVERSION: "=%
|
|
set DESIREDVERSION=v%DESIREDVERSION:"=%
|
|
if exist .\.build\electron\version (set /p INSTALLEDVERSION=<.\.build\electron\version) else (set INSTALLEDVERSION="")
|
|
|
|
if not exist %CODE% node .\node_modules\gulp\bin\gulp.js electron
|
|
if not "%INSTALLEDVERSION%" == "%DESIREDVERSION%" node .\node_modules\gulp\bin\gulp.js electron
|
|
|
|
:: Run tests
|
|
%CODE% .\test\electron\index.js %*
|
|
|
|
popd
|
|
|
|
endlocal
|
|
exit /b %errorlevel%
|