2006-09-04 18:46:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
prefs=( General )
|
|
|
|
|
|
|
|
for pref in "${prefs[@]}"
|
|
|
|
do
|
2007-02-24 23:52:11 +00:00
|
|
|
cd ../Preferences/$pref
|
2006-09-04 18:46:18 +00:00
|
|
|
xcodebuild -alltargets -configuration Release
|
2007-02-24 23:52:11 +00:00
|
|
|
cd ..
|
2006-09-04 18:46:18 +00:00
|
|
|
done
|