11 lines
128 B
Bash
11 lines
128 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
prefs=( General )
|
||
|
|
||
|
for pref in "${prefs[@]}"
|
||
|
do
|
||
|
cd $pref
|
||
|
xcodebuild -alltargets -configuration Release
|
||
|
cd ..
|
||
|
done
|