Skip to content

Commit

Permalink
Removing BASH-style defaulting
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdgriffin committed Mar 7, 2017
1 parent e2a0d0d commit 4895cba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bootstrap/Platform_Management/Load_Cartridge_List.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ done < ${WORKSPACE}/platform-management/cartridges.txt''')
url("${platformToolsGitURL}")
credentials("adop-jenkins-master")
}
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION:-*/master}')
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION}')
relativeTargetDir('platform-management')
}
}
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/Platform_Management/Setup_Gerrit.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fi''')
url("${platformToolsGitURL}")
credentials("adop-jenkins-master")
}
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION:-*/master}')
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION}')
relativeTargetDir('platform-management')
}
}
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/Workspace_Management/Generate_Workspace.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ done''')
url("${platformToolsGitURL}")
credentials("adop-jenkins-master")
}
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION:-*/master}')
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION}')
}
}
}
2 changes: 1 addition & 1 deletion projects/jobs/jobs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def cartridgeFolder = folder(cartridgeFolderName) {
url("${platformToolsGitUrl}")
credentials("adop-jenkins-master")
}
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION:-*/master}')
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION}')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion workspaces/jobs/jobs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ source ${WORKSPACE}/projects/gerrit/configure.sh -r permissions-with-review''')
url("${platformToolsGitURL}")
credentials("adop-jenkins-master")
}
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION:-*/master}')
branch('${ADOP_PLATFORM_MANAGEMENT_VERSION}')
}
}
}

0 comments on commit 4895cba

Please sign in to comment.