mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
* electron 1.4.6 * fix broken DND image feedback * OSS input * remove cat.exe as it is no longer needed * update electron.d.ts * set new ELECTRON_NO_ASAR environment for forked processes * Automatically enable high contrast theme when enabled in Windows (fixes #15360)
25 lines
506 B
Batchfile
25 lines
506 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%"
|
|
|
|
rem TFS Builds
|
|
if not "%BUILD_BUILDID%" == "" (
|
|
%CODE% .\node_modules\mocha\bin\_mocha %*
|
|
)
|
|
|
|
rem Otherwise
|
|
if "%BUILD_BUILDID%" == "" (
|
|
%CODE% .\node_modules\mocha\bin\_mocha --reporter dot %*
|
|
)
|
|
popd
|
|
|
|
endlocal
|
|
exit /b %errorlevel% |