Skip to content

Instantly share code, notes, and snippets.

@OdNairy
Created November 19, 2013 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OdNairy/7547418 to your computer and use it in GitHub Desktop.
Save OdNairy/7547418 to your computer and use it in GitHub Desktop.
Autoincrement
cd $SRCROOT
bN=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE")
bN=$((0x$bN))
bN=$(($bN + 1))
bN=$(printf "%X" $bN)
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $bN" "$INFOPLIST_FILE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment