Skip to content

Instantly share code, notes, and snippets.

View sdarlington's full-sized avatar

Stephen Darlington sdarlington

View GitHub Profile
#!/bin/ksh
targetName="$1"
# Thanks to http://stackoverflow.com/a/13871762/75245 for help with the parsing.
relativeInfoPlistLocation=$(/usr/bin/xcrun xcodebuild -showBuildSettings -target ${targetName} 2>/dev/null | awk -F= '/INFOPLIST_FILE/ { print $2; }')
absoluteInfoPlistLocation=${PROJECT_DIR}/$relativeInfoPlistLocation
version=$(/usr/libexec/Plistbuddy -c 'Print :CFBundleShortVersionString' $absoluteInfoPlistLocation)