Created
May 19, 2014 04:45
-
-
Save tokorom/207371cb44ad07a85e89 to your computer and use it in GitHub Desktop.
Run Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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