Skip to content

Commit

Permalink
Proper use of variable in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mdymczyk committed May 30, 2018
1 parent 31b8836 commit a25d455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/Jenkinsfile.utils
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ String changeId() {
void publishToS3(BuildInfo buildInfo, String extratag, String platform) {
echo "Publishing artifact to S3"

def buildArch = ${platform}.split('-')[0]
def buildArch = platform.split('-')[0]

def versionTag = buildInfo.getVersion()
def majorVersionTag = buildInfo.getMajorVersion()
Expand Down

0 comments on commit a25d455

Please sign in to comment.