Skip to content
This repository has been archived by the owner on Jul 9, 2019. It is now read-only.

Commit

Permalink
reverted tag case change (#1716)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeDawkins authored and James Baxley committed Jan 9, 2017
1 parent dcf7d39 commit 82c0202
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .dev/deploy/app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ yecho () {
# force script to error out at first error
set -e

CURRENT_TAG=$(git describe --exact-match --abbrev=0 --tags) | tr '[:upper:]' '[:lower:]'
CURRENT_TAG=$(git describe --exact-match --abbrev=0 --tags)

PREVIOUS_TAG=$(git describe HEAD^1 --abbrev=0 --tags)
GIT_HISTORY=$(git log --no-merges --format="- %s" "$PREVIOUS_TAG"..HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .dev/prepare/app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -z "$TRAVIS_TAG" ]; then
exit 0
fi

CURRENT_TAG=$(git describe --exact-match --abbrev=0 --tags) | tr '[:upper:]' '[:lower:]'
CURRENT_TAG=$(git describe --exact-match --abbrev=0 --tags)
APP=$(echo "$CURRENT_TAG" | cut -d'/' -f1)
DEST=$(echo "$CURRENT_TAG" | cut -d'/' -f2)
CHANNEL=$(echo "$CURRENT_TAG" | cut -d'/' -f3)
Expand Down

0 comments on commit 82c0202

Please sign in to comment.