summaryrefslogtreecommitdiff
path: root/clean.sh
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2016-04-27 14:35:45 -0700
committerwtgodbe <wigodbe@microsoft.com>2016-05-17 14:06:39 -0700
commit8568bf1d9722657c602a1f1fe0148e28a93ea8ce (patch)
treed784a4438e3fe7b74106f1d3e82aa88889024fc4 /clean.sh
parent41a4ad5054cf877db6aa331855b43ad8678a93ad (diff)
downloadcoreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.tar.gz
coreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.tar.bz2
coreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.zip
Add dev workflow scripts for build pipeline
Diffstat (limited to 'clean.sh')
-rwxr-xr-xclean.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/clean.sh b/clean.sh
new file mode 100755
index 0000000000..ade2f122f6
--- /dev/null
+++ b/clean.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+# Obtain the location of the bash script to figure out where the root of the repo is.
+__ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
+echo Cleaning previous output for the selected configuration
+
+rm -rf "$__ProjectRoot/bin"
+
+rm -rf "$__ProjectRoot/Tools"
+
+exit 0 \ No newline at end of file