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 authored and MarkEWaite committed Nov 26, 2014
1 parent 8854f8b commit 988c4d1
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 @@ -642,6 +642,7 @@ public GitClient createClient(TaskListener listener, EnvVars environment, Run<?,
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 988c4d1

Please sign in to comment.