Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
last tag tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
incanus committed Apr 7, 2015
1 parent 3703c53 commit 0986f85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/publish_ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o pipefail
set -u

#
# iOS release tag format is `ios-vX.Y.Z`
# iOS release tag format is `ios-vX.Y.Z`; `X.Y.Z` gets passed in
#
PUBLISH_VERSION="$1"

Expand Down
2 changes: 1 addition & 1 deletion scripts/travis_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

COMMIT_MESSAGE=$(git show -s --format=%B $1 | tr -d '\n')
PUBLISH_TAG=$(echo "$COMMIT_MESSAGE" | grep -oE '\[publish [a-z0-9\.\-]+\]' | grep -oE '[a-z0-9\.\-]+' | tail -n1)
PUBLISH_PLATFORM=$(echo "$PUBLISH_TAG" | awk -F '-' '{ print $1 }')
PUBLISH_PLATFORM=$(echo "$PUBLISH_TAG" | awk -F '-v' '{ print $1 }')
PUBLISH_VERSION=$(echo "$PUBLISH_TAG" | awk -F '-v' '{ print $2 }')

set -e
Expand Down

0 comments on commit 0986f85

Please sign in to comment.