From 2926e4533df8fb3061eaa96dcd0450b9368a3f69 Mon Sep 17 00:00:00 2001 From: Jon Maddox Date: Mon, 25 Mar 2013 09:18:29 -0400 Subject: [PATCH] removes the tmp directory --- ios/script/clean | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 ios/script/clean diff --git a/ios/script/clean b/ios/script/clean new file mode 100755 index 0000000000..2a05764296 --- /dev/null +++ b/ios/script/clean @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +test -d "tmp" && { + rm -Rf tmp +}