Skip to content

Commit

Permalink
only ignore success when killing processes
Browse files Browse the repository at this point in the history
  • Loading branch information
TyOverby committed Nov 9, 2016
1 parent 1f332c0 commit c0fcdc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cibuild.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ exit /b 1
@REM Kill any instances of msbuild.exe to ensure that we never reuse nodes (e.g. if a non-roslyn CI run
@REM left some floating around).

taskkill /F /IM vbcscompiler.exe 2> nul
taskkill /F /IM vbcscompiler.exe > nul
if ERRORLEVEL 1 GOTO ActuallyFail

taskkill /F /IM msbuild.exe 2> nul
taskkill /F /IM msbuild.exe > nul
if ERRORLEVEL 1 GOTO ActuallyFail

taskkill /F /IM csc.exe 2> nul
taskkill /F /IM csc.exe > nul
if ERRORLEVEL 1 GOTO ActuallyFail

taskkill /F /IM vbc.exe 2> nul
taskkill /F /IM vbc.exe > nul
if ERRORLEVEL 1 GOTO ActuallyFail

0 comments on commit c0fcdc1

Please sign in to comment.