35 lines
1.2 KiB
Bash
Executable File
35 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script automatically sets the version and short version string of
|
|
# an Xcode project from the Git repository containing the project.
|
|
#
|
|
# To use this script in Xcode, add the script's path to a "Run Script" build
|
|
# phase for your application target.
|
|
|
|
set -x
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
# First, check for git in $PATH
|
|
hash git 2>/dev/null || { echo >&2 "Git required, not installed. Aborting build number update script."; exit 0; }
|
|
|
|
# Run Script build phases that operate on product files of the target
|
|
# that defines them should use the value of this build setting [TARGET_BUILD_DIR].
|
|
# But Run Script build phases that operate on product files of other targets should use ?BUILT_PRODUCTS_DIR? instead.
|
|
INFO_PLIST="${TARGET_BUILD_DIR}/${INFOPLIST_PATH}"
|
|
|
|
if [[ $(git ls-files -m "StatusIm/Info.plist") = *"Info.plist"* ]]; then
|
|
echo "version was set in Info.plist"
|
|
exit 0
|
|
fi
|
|
|
|
RELEASE_VERSION=$(cat ../VERSION)
|
|
BUILD_NO=$(bash ../scripts/version/build_no.sh)
|
|
|
|
# For debugging:
|
|
echo "SHORT VERSION: ${RELEASE_VERSION}"
|
|
echo "BUILD NO: ${BUILD_NO}"
|
|
|
|
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion ${BUILD_NO}" "${INFO_PLIST}"
|
|
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${RELEASE_VERSION}" "${INFO_PLIST}"
|