Skip to content

Instantly share code, notes, and snippets.

@SpacyRicochet
Forked from sekati/xcode-build-bump.sh
Last active December 26, 2015 20:59
Show Gist options
  • Save SpacyRicochet/7212475 to your computer and use it in GitHub Desktop.
Save SpacyRicochet/7212475 to your computer and use it in GitHub Desktop.
# Upload with HockeyApp
open -a HockeyApp "${ARCHIVE_PATH}"
# Auto increment CFBundleVersion
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${PROJECT_DIR}/${INFOPLIST_FILE}")
buildNumber=$(($buildNumber + 1))
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/${INFOPLIST_FILE}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment