Skip to content

Commit

Permalink
Merge pull request #34 from christ66/JENKINS-28703
Browse files Browse the repository at this point in the history
[JENKINS-28703] Add pinned status for plugins.
  • Loading branch information
christ66 committed Jun 3, 2015
2 parents 0a69bdb + 3266b6b commit a8001e9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -655,7 +655,7 @@ protected void printTo(PrintWriter out) throws IOException {
Collections.sort(plugins);
for (PluginWrapper w : plugins) {
if (w.isActive()) {
out.println(w.getShortName() + ":" + w.getVersion());
out.println(w.getShortName() + ":" + w.getVersion() + ":" + (w.isPinned() ? "pinned" : "not-pinned"));
}
}
}
Expand All @@ -673,7 +673,7 @@ protected void printTo(PrintWriter out) throws IOException {
Collections.sort(plugins);
for (PluginWrapper w : plugins) {
if (!w.isActive()) {
out.println(w.getShortName() + ":" + w.getVersion());
out.println(w.getShortName() + ":" + w.getVersion() + ":" + (w.isPinned() ? "pinned" : "not-pinned"));
}
}
}
Expand Down

0 comments on commit a8001e9

Please sign in to comment.