Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clean.cmd « buildscripts - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abe7d8710062096a309e829befa1f1a8d781d265 (plain)
1
2
3
4
5
6
7
8
9
@if not defined _echo @echo off
setlocal EnableDelayedExpansion

echo Stop VBCSCompiler.exe execution.
for /f "tokens=2 delims=," %%F in ('tasklist /nh /fi "imagename eq VBCSCompiler.exe" /fo csv') do taskkill /f /PID %%~F

echo Cleaning entire working directory ...
call git clean -xdf
exit /b !ERRORLEVEL!