summaryrefslogtreecommitdiff
path: root/clean.sh
blob: ade2f122f65c0f928a5bf738e36e6c736777f5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
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