Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-25338] Noting merge of #1497.
  • Loading branch information
jglick committed Jan 9, 2015
2 parents b33b921 + 2647af4 commit 8e5199e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -64,6 +64,9 @@
<li class=bug>
Amend <code>JAVA_HOME</code> check to work with JDK 9.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-25601">issue 25601</a>)
<li class=bug>
CLI <code>list-jobs</code> command should display raw name, not display name, where they differ.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-25338">issue 25338</a>)
<li class=bug>
Better support functional tests from Gradle-based plugins.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-26331">issue 26331</a>)
Expand Down
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 8e5199e

Please sign in to comment.