Skip to content

Commit

Permalink
Fix plugin list command error message
Browse files Browse the repository at this point in the history
This commit backports commit fcc2c19
from master to 2.0.
  • Loading branch information
jasontedor committed Oct 26, 2015
1 parent 2b60672 commit ab99b60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public void removePlugin(String name, Terminal terminal) throws IOException {
if (removed) {
terminal.println("Removed %s", name);
} else {
terminal.println("Plugin %s not found. Run plugin --list to get list of installed plugins.", name);
terminal.println("Plugin %s not found. Run \"plugin list\" to get list of installed plugins.", name);
}
}

Expand Down

0 comments on commit ab99b60

Please sign in to comment.