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