Skip to content

Instantly share code, notes, and snippets.

@timd
Created August 28, 2012 14:31
Show Gist options
  • Save timd/3498514 to your computer and use it in GitHub Desktop.
Save timd/3498514 to your computer and use it in GitHub Desktop.
Update build number
# Assumes that you tag versions with the version number (e.g., "1.1") and then the build number is
# that plus the number of commits since the tag (e.g., "1.1.17")
echo "Updating version/build number from git..."
plist=${PROJECT_DIR}/${INFOPLIST_FILE}
# increment the build number (ie 115 to 116)
versionnum=`git describe | awk '{split($0,a,"-"); print a[1]}'`
buildnum=`git describe | awk '{split($0,a,"-"); print a[1] "." a[2]}'`
if [[ "${versionnum}" == "" ]]; then
echo "No version number from git"
exit 2
fi
if [[ "${buildnum}" == "" ]]; then
echo "No build number from git"
exit 2
fi
/usr/libexec/Plistbuddy -c "Set CFBundleShortVersionString $versionnum" "${plist}"
echo "Updated version number to $versionnum"
/usr/libexec/Plistbuddy -c "Set CFBundleVersion $buildnum" "${plist}"
echo "Updated build number to $buildnum"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment