Skip to content

Instantly share code, notes, and snippets.

@tokorom
Created May 19, 2014 04:45
Show Gist options
  • Save tokorom/207371cb44ad07a85e89 to your computer and use it in GitHub Desktop.
Save tokorom/207371cb44ad07a85e89 to your computer and use it in GitHub Desktop.
Run Script
if [ ${CONFIGURATION} = "Debug" ]; then
plistBuddy="/usr/libexec/PlistBuddy"
infoPlist=${TEMP_DIR}"/Preprocessed-Info.plist"
marketVersion=$($plistBuddy -c "Print CFBundleShortVersionString" $infoPlist)
versionPrefix="dev-"
lastCommitDate=`xcrun git log -1 --format='%ci'`
versionSuffix=" ($lastCommitDate)"
versionString=$versionPrefix$marketVersion$versionSuffix
$plistBuddy -c "Set :CFBundleVersion $versionString" $infoPlist
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment