summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorKasper F. Brandt <poizan@poizan.dk>2015-02-12 21:38:39 +0100
committerKasper F. Brandt <poizan@poizan.dk>2015-02-12 21:38:39 +0100
commit7c362de3d778b70dff798a33f5b088bdb5d49f68 (patch)
tree0ac8801d62cb76f25d7a42ea243bd954cc6b1240 /build.sh
parentbe60802fe5f8852743b7865e63cc6e8a6e5da9ed (diff)
downloadcoreclr-7c362de3d778b70dff798a33f5b088bdb5d49f68.tar.gz
coreclr-7c362de3d778b70dff798a33f5b088bdb5d49f68.tar.bz2
coreclr-7c362de3d778b70dff798a33f5b088bdb5d49f68.zip
Fix wrong flag to rm when deleting intermediates folder. Fixes #243
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index f8ce4aa1c8..8f2f2d8416 100755
--- a/build.sh
+++ b/build.sh
@@ -41,7 +41,7 @@ clean()
# Cleanup intermediates folder
if [ -d "$__IntermediatesDir" ]; then
- rm -f "$__IntermediatesDir"
+ rm -r "$__IntermediatesDir"
fi
mkdir -p "$__IntermediatesDir"