forked from xinpengdr/MySQL-Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clean.bat
41 lines (28 loc) · 1.05 KB
/
Clean.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@ECHO OFF
REM ****************************************************************************
SET CleanRootPath=%CD%
SET CleanPublishPath=%CleanRootPath%\Publish
SET CleanSourcePath=%CleanRootPath%\Source
SET CleanTempPath=%CleanRootPath%\Temp
REM ****************************************************************************
CD "%CleanRootPath%"
if exist "%CleanPublishPath%" RMDIR /S /Q "%CleanPublishPath%"
if exist "%CleanTempPath%" RMDIR /S /Q "%CleanTempPath%"
MKDIR "%CleanTempPath%"
COPY "%CleanSourcePath%\FastMM\FastMM_FullDebugMode.dll" "%CleanTempPath%" > nul
for /D /R %%I in (*) do (
if exist "%%I\__history" RMDIR /S /Q %%I\__history"
if exist "%%I\*.~dsk" DEL "%%I\*.~dsk"
if exist "%%I\*.drc" DEL %%I\*.drc"
if exist "%%I\*.dproj.local" DEL %%I\*.dproj.local"
if exist "%%I\*.identcache" DEL "%%I\*.identcache"
)
CHOICE /M "Clean build packages?"
if Errorlevel 2 goto End
if Errorlevel 1 goto CleanAll
goto End
:CleanAll
for /D /R %%I in (*) do (
if exist "%%I\Bin\*" DEL /Q "%%I\Bin\*"
)
:End