Skip to content

Commit 221eeba

Browse files
authored
Merge pull request #116 from fraz3alpha/strip-v-from-version-string
Strip v from version string
2 parents 596cb2a + 856a2b9 commit 221eeba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build/version.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
export VERSION=0.7.0
2-
export EXTENSION_BUILD_VERSION=${EXTENSION_BUILD_VERSION:-$VERSION}
1+
export VERSION=0.7.1
2+
# Strip any 'v' characters from the version string, as exist in the git tag
3+
export EXTENSION_BUILD_VERSION=`echo ${EXTENSION_BUILD_VERSION:-$VERSION} | sed -e s/v//`
34
# Default the build id variable to zero if not set - Travis should set this to
45
# the Travis build number
56
export EXTENSION_BUILD_ID=${EXTENSION_BUILD_ID:-0}

0 commit comments

Comments
 (0)