Skip to content

Commit

Permalink
Merge pull request #19 from alexouzounis/JENKINS-24735
Browse files Browse the repository at this point in the history
JENKINS-24735 - Add support for build parameters in Subversion URLs
  • Loading branch information
hugueschabot committed Nov 5, 2014
2 parents 344a848 + 14eeb00 commit d4f3658
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/jenkins/plugins/svnmerge/IntegrateAction.java
Expand Up @@ -18,11 +18,13 @@
import hudson.security.ACL;
import jenkins.model.Jenkins;
import jenkins.plugins.svnmerge.FeatureBranchProperty.IntegrationResult;

import org.kohsuke.stapler.StaplerRequest;
import org.kohsuke.stapler.StaplerResponse;
import org.tmatesoft.svn.core.SVNException;

import javax.servlet.ServletException;

import java.io.File;
import java.io.IOException;
import java.util.Hashtable;
Expand Down Expand Up @@ -144,7 +146,8 @@ public SvnInfo getSvnInfo() {

if (locations.length == 1) {
ModuleLocation firstLocation = svn.getLocations()[0];

// expand system and node environment variables as well as the project parameters
firstLocation = Utility.getExpandedLocation(firstLocation, getProject());
if (!firstLocation.isIgnoreExternalsOption()) {
for (SvnInfo svnInfo : svnInfos) {
try {
Expand Down

0 comments on commit d4f3658

Please sign in to comment.