|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [JIRA] (JENKINS-13119) How can I set an... [email protected] (JIRA)
- [JIRA] (JENKINS-13119) How can I s... [email protected] (JIRA)
- [JIRA] (JENKINS-13119) How can I s... [email protected] (JIRA)
- [JIRA] (JENKINS-13119) How can I s... [email protected] (JIRA)
- [JIRA] (JENKINS-13119) How can I s... [email protected] (JIRA)
- [JIRA] (JENKINS-13119) How can I s... [email protected] (JIRA)

Problem solved...got rid of curly braces around SVN_BRANCH and SVN_TAG. However its weird that I still has to use the $ sign in front of it but I have to use BUILD_TYPE without the preceding $.
if ("Trunk".equals(BUILD_TYPE)) { def map = [SVN_REPO_PATH: "trunk/ConfigManagement"]; return map }
if ("Branches".equals(BUILD_TYPE)) { def map = [SVN_REPO_PATH: "branches/$SVN_BRANCH"]; return map }
if ("Tags".equals(BUILD_TYPE)) { def map = [SVN_REPO_PATH: "tags/$SVN_TAG"]; return map }