fix path for getting VERSION for xcode

This commit is contained in:
Jakub Sokołowski 2018-05-24 23:34:48 +02:00
parent 52236eef8c
commit 2bf1d3a128
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 3 additions and 2 deletions

View File

@ -22,12 +22,13 @@ 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"
else
pwd
# Build version (closest-tag-or-branch "-" commits-since-tag "-" short-hash dirty-flag)
BUILD_VERSION="$(cat ../../VERSION)-$(git describe --always --dirty=+)"
BUILD_VERSION="$(cat ../VERSION)-$(git describe --always --dirty=+)"
# Use the latest tag for short version (expected tag format "vn[.n[.n]]")
# or if there are no tags, we make up version 0.0.<commit count>
LATEST_TAG=$(cat ../../VERSION) || LATEST_TAG="HEAD"
LATEST_TAG=$(cat ../VERSION) || LATEST_TAG="HEAD"
if [ $LATEST_TAG = "HEAD" ]
then COMMIT_COUNT=$(git rev-list --count HEAD)
LATEST_TAG="0.0.$COMMIT_COUNT"