ade2f122f65c0f928a5bf738e36e6c736777f5a9
[platform/upstream/coreclr.git] / clean.sh
1 #!/usr/bin/env bash
2
3 # Obtain the location of the bash script to figure out where the root of the repo is.
4 __ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5
6 echo Cleaning previous output for the selected configuration
7
8 rm -rf "$__ProjectRoot/bin"
9
10 rm -rf "$__ProjectRoot/Tools"
11
12 exit 0