1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 18:34:58 +03:00

GH-220 Fix script

This commit is contained in:
Tae Won Ha 2016-10-15 00:09:57 +02:00
parent dc1c867f83
commit 6bcff831d9
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -21,6 +21,9 @@ BUNDLE_VERSION=$(agvtool what-version | sed '2q;d' | sed -E 's/ +(.+)/\1/')
MARKETING_VERSION=$(agvtool what-marketing-version | tail -n 1 | sed -E 's/.*of "(.*)" in.*/\1/')
COMPOUND_VERSION="v${MARKETING_VERSION}-${BUNDLE_VERSION}"
TAG=${COMPOUND_VERSION}
if [ "${IS_SNAPSHOT}" = true ] ; then
TAG="snapshot/${COMPOUND_VERSION}"
fi
VIMR_FILE_NAME="VimR-${COMPOUND_VERSION}.tar.bz2"
./bin/commit_and_push_tags.sh "${BRANCH}" "${TAG}" ${IS_SNAPSHOT}