Browse Source

Add hint to user about 'stop' command

Improves gh-218
pull/234/head
Dave Syer 12 years ago
parent
commit
6b6bd37924
  1. 2
      spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java

2
spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java

@ -92,7 +92,7 @@ public class RunCommand extends OptionParsingCommand { @@ -92,7 +92,7 @@ public class RunCommand extends OptionParsingCommand {
if (this.runner != null) {
throw new RuntimeException(
"Already running. Please stop the current application before running another.");
"Already running. Please stop the current application before running another (use the 'stop' command).");
}
SourceOptions sourceOptions = new SourceOptions(options);

Loading…
Cancel
Save