Skip to content

Commit

Permalink
[FIXED JENKINS-23675] Expand parameters on repository url before asso…
Browse files Browse the repository at this point in the history
…ciate one url to one credential
  • Loading branch information
elvysborges committed Jul 3, 2014
1 parent b3c63a0 commit 7fbd682
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/hudson/plugins/git/GitSCM.java
Expand Up @@ -570,6 +570,7 @@ public GitClient createClient(BuildListener listener, EnvVars environment, Abstr
for (UserRemoteConfig uc : getUserRemoteConfigs()) {
if (uc.getCredentialsId() != null) {
String url = uc.getUrl();
url = getParameterString(url, environment);
StandardUsernameCredentials credentials = CredentialsMatchers
.firstOrNull(
CredentialsProvider.lookupCredentials(StandardUsernameCredentials.class, project,
Expand Down

0 comments on commit 7fbd682

Please sign in to comment.