summaryrefslogtreecommitdiff
path: root/clean.cmd
diff options
context:
space:
mode:
authorLakshmi Priya Sekar <lasekar@microsoft.com>2016-07-14 15:42:33 -0700
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-07-29 17:47:37 -0700
commitf5afe9b479acea4d2f4c80d0b86b8db6a869ff96 (patch)
tree3fd39ea446a193bcea48238fd866ec4d64253b3b /clean.cmd
parentf9350e92692fbc6972138115bfc5336750da9069 (diff)
downloadcoreclr-f5afe9b479acea4d2f4c80d0b86b8db6a869ff96.tar.gz
coreclr-f5afe9b479acea4d2f4c80d0b86b8db6a869ff96.tar.bz2
coreclr-f5afe9b479acea4d2f4c80d0b86b8db6a869ff96.zip
Use run tool in coreclr dev workflow.
Diffstat (limited to 'clean.cmd')
-rw-r--r--clean.cmd22
1 files changed, 11 insertions, 11 deletions
diff --git a/clean.cmd b/clean.cmd
index cdd00e7a2e..50e709e3cb 100644
--- a/clean.cmd
+++ b/clean.cmd
@@ -17,28 +17,28 @@ if [%1]==[] (
:Loop
if [%1]==[] goto Begin
-if /I [%1] == [/?] goto Usage
-if /I [%1] == [/help] goto Usage
+if /I [%1] == [-?] goto Usage
+if /I [%1] == [-help] goto Usage
-if /I [%1] == [/p] (
+if /I [%1] == [-p] (
set packages=true
set thisArgs=!thisArgs!%1
goto Next
)
-if /I [%1] == [/b] (
+if /I [%1] == [-b] (
set bin=true
set thisArgs=!thisArgs!%1
goto Next
)
-if /I [%1] == [/t] (
+if /I [%1] == [-t] (
set tools=true
set thisArgs=!thisArgs!%1
goto Next
)
-if /I [%1] == [/all] (
+if /I [%1] == [-all] (
set tools=true
set bin=true
set packages=true
@@ -96,10 +96,10 @@ exit /b 0
echo.
echo Repository cleaning script.
echo Options:
-echo /b - Cleans the bin directory
-echo /p - Cleans the packages directory
-echo /t - Cleans the tools directory
-echo /all - Cleans everything
+echo -b - Cleans the bin directory
+echo -p - Cleans the packages directory
+echo -t - Cleans the tools directory
+echo -all - Cleans everything
echo.
-echo If no option is specified then clean.cmd /b /p /t is implied.
+echo If no option is specified then clean.cmd -b -p -t is implied.
exit /b \ No newline at end of file