Skip to content
Snippets Groups Projects
Commit 2b8728ac authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

- Prepare first release

parent 653b479a
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#Comment out this line to specify your JAVA path:
#export JAVA_HOME=/etc/jre...
export JAVA_HOME=/usr/lib/jvm/default-java
export APP_BASEDIR=$(pwd)
export JAVA_COMMAND=$JAVA_HOME/bin/java
......
......@@ -117,7 +117,7 @@ public class Main {
// If scheduling is running, wait quit instruction
if (!quit) {
while (!quit) {
String userInput = CommandLinesUtils.readInput("Press [Q] or enter to quit", "Q", true);
String userInput = CommandLinesUtils.readInput("*** uCoinj :: Elasticsearch successfully started *** >> To quit, press [Q] or enter\n", "Q", true);
quit = StringUtils.isNotBlank(userInput) && "Q".equalsIgnoreCase(userInput);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment