Skip to content

Commit

Permalink
[FIXED JENKINS-25338] Show job name rather than display name in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed Dec 21, 2014
1 parent 7f36c3f commit 2647af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/cli/ListJobsCommand.java
Expand Up @@ -82,7 +82,7 @@ protected int run() throws Exception {

// Print all jobs.
for (TopLevelItem item : jobs) {
stdout.println(item.getDisplayName());
stdout.println(item.getName());
}

return 0;
Expand Down

0 comments on commit 2647af4

Please sign in to comment.