From 818dab34d47a64153b31cd7941a54e342327d794 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 21 Sep 2017 09:23:57 +1200 Subject: [PATCH] Releasing 3.4.5 --- release.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/release.sh b/release.sh index da5f9bed..2b0ee4ff 100755 --- a/release.sh +++ b/release.sh @@ -2,18 +2,18 @@ VERSION=$(cat VERSION.md) -echo -e "Releasing $VERSION ($BUILD)" +echo -e "Releasing $VERSION" echo -e "git add -A" ADD=$(git add -A) echo -e $ADD -echo -e "git commit -m 'Releasing $VERSION ($BUILD)'" -COMMIT=$(git commit -m "Releasing $VERSION ($BUILD)") +echo -e "git commit -m 'Releasing $VERSION'" +COMMIT=$(git commit -m "Releasing $VERSION") echo -e $COMMIT -echo -e "git tag -a '$VERSION' -m 'Releasing $VERSION ($BUILD)'" -TAG=$(git tag -a "$VERSION" -m "Releasing $VERSION ($BUILD)") +echo -e "git tag -a '$VERSION' -m 'Releasing $VERSION'" +TAG=$(git tag -a "$VERSION" -m "Releasing $VERSION") echo -e $TAG echo -e "git push"