fix pbxprojs
[wdl/wdl-ol.git] / IPlugExamples / cleanup-mac.command
blob20b82e40aadbc1c3b1d18460c21ee6853b4fe578
1 #! /bin/sh
3 BASEDIR=$(dirname $0)
5 cd $BASEDIR
7 echo "removing all build-mac folders..."
9 for file in *
11 #echo $file
12 if [ -d "$file/build-mac" ]
13 then
14 echo "removing $file/build-mac"
15 rm -f -r $file/build-mac
17 done
19 echo "done"