stop adding 'v' before the contents of VERSION file

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2018-12-03 14:19:21 +01:00 committed by Jakub
parent b72d7d1950
commit 49cfcd3e24
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def timestamp() {
def suffix() {
if (params.RELEASE == true) {
return 'v' + readFile("${env.WORKSPACE}/${env.STATUS_PATH}/VERSION").trim()
return readFile("${env.WORKSPACE}/${env.STATUS_PATH}/VERSION").trim()
} else {
return "${timestamp()}-${gitCommit()}"
}