Remove version number for nightly releases

This commit is contained in:
Konstantinos Sideris 2018-01-30 16:13:54 -07:00
parent 117a739bc4
commit 1d7548dae2
1 changed files with 2 additions and 3 deletions

View File

@ -15,9 +15,8 @@ if [[ $TAG == v* ]]; then
fi
# Prepend nightly with the latest version.
if [[ $TAG == "nightly" ]]; then
LATEST_VERSION=`git tag -l | grep "^v" | sort | head -n 1`
TAG=${LATEST_VERSION#?}.nightly
if [[ $TAG == nightly ]]; then
TAG=${TRAVIS_BUILD_NUMBER}.nightly
fi
# Installing dependencies on travis.