Created
December 8, 2011 01:32
-
-
Save grandeforesta/1445687 to your computer and use it in GitHub Desktop.
Xcode4でビルド番号のオートインクリメント 16進数バージョン
This file contains hidden or 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
#!/bin/bash | |
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE") | |
buildNumber=$(printf '%d' "0x$buildNumber") | |
buildNumber=$(($buildNumber + 1)) | |
buildNumber=$(printf '%x' $buildNumber) | |
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment