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