9 lines
122 B
Bash
9 lines
122 B
Bash
|
for directory in *
|
||
|
do
|
||
|
if [ -d $directory ]; then
|
||
|
cd $directory
|
||
|
xcodebuild -configuration Deployment
|
||
|
cd ..
|
||
|
fi
|
||
|
done
|