removes the tmp directory

This commit is contained in:
Jon Maddox 2013-03-25 09:18:29 -04:00
parent 845b87fbba
commit 2926e4533d

7
ios/script/clean Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
set -e
test -d "tmp" && {
rm -Rf tmp
}