repo.or.cz
/
wdl
/
wdl-ol.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix pbxprojs
[wdl/wdl-ol.git]
/
IPlugExamples
/
cleanup-mac.command
blob
20b82e40aadbc1c3b1d18460c21ee6853b4fe578
1
#! /bin/sh
2
3
BASEDIR
=
$
(
dirname
$0
)
4
5
cd
$BASEDIR
6
7
echo
"removing all build-mac folders..."
8
9
for
file
in
*
10
do
11
#echo $file
12
if
[
-d
"
$file
/build-mac"
]
13
then
14
echo
"removing
$file
/build-mac"
15
rm
-f -r
$file
/
build-mac
16
fi
17
done
18
19
echo
"done"