Skip to content

Commit

Permalink
Fix BRANCH variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
SDawley committed Nov 29, 2022
1 parent 60273ee commit e3640a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JenkinsJobs/Builds/I_build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def config = new groovy.json.JsonSlurper().parseText(readFileFromWorkspace('Jenk
def STREAMS = config.Streams

for (STREAM in STREAMS){
def BRANCH = config.Branches.STREAM
def BRANCH = config.Branches[STREAM]
def MAJOR = STREAM.split('\\.')[0]
def MINOR = STREAM.split('\\.')[1]

Expand Down

0 comments on commit e3640a5

Please sign in to comment.