Skip to content

Commit

Permalink
Fix url to pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
imeredith committed Oct 13, 2016
1 parent 524a299 commit ec86c99
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -52,7 +52,7 @@ public String getChangesURL(Run<?, ?> run) {
public String getJobURL(MultiBranchProject<?, ?> project) {
String jobPath = Util.rawEncode(project.getFullName());

return getRoot() + "organizations/jenkins/pipelines/" + jobPath + "/";
return getRoot() + "organizations/jenkins/" + jobPath + "/";
}
@Override
public String getJobURL(Job<?, ?> project) {
Expand All @@ -63,7 +63,7 @@ public String getJobURL(Job<?, ?> project) {
jobPath = Util.rawEncode(project.getFullName());
}

return getRoot() + "organizations/jenkins/pipelines/" + jobPath + "/";
return getRoot() + "organizations/jenkins/" + jobPath + "/";
}

@Override
Expand Down

0 comments on commit ec86c99

Please sign in to comment.