remove some diffs from vscode (#6780)

This commit is contained in:
Anthony Dresser
2019-08-17 14:43:51 -07:00
committed by GitHub
parent 6f037ce064
commit b4c2acb8d0
5 changed files with 16 additions and 42 deletions

View File

@@ -5,6 +5,7 @@ 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
@@ -15,23 +16,14 @@ node build\lib\electron.js
if %errorlevel% neq 0 node .\node_modules\gulp\bin\gulp.js electron
:: Run tests
rem TFS Builds
if not "%BUILD_BUILDID%" == "" (
if not "%ADD_REPORTER%" == "" (
%CODE% .\test\electron\index.js --reporter mocha-junit-reporter %*
)
if "%ADD_REPORTER%" == "" (
:: Run tests
%CODE% .\test\electron\index.js %*
)
)
rem Otherwise
if "%BUILD_BUILDID%" == "" (
%CODE% .\test\electron\index.js %*
)
popd
endlocal
:: app.exit(0) is exiting with code 255 in Electron 1.7.4.
:: See https://github.com/Microsoft/vscode/issues/28582
echo errorlevel: %errorlevel%
if %errorlevel% == 255 set errorlevel=0
exit /b %errorlevel%