Try communicating in actual English

This commit is contained in:
Dale Wijnand 2017-03-07 13:56:05 +00:00 committed by Eugene Yokota
parent 7b4a349d5b
commit 6d3129dcb7
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,8 @@ object MainLoop {
def isInteractive = System.console() != null
def hasShell = state.remainingCommands contains "shell"
if (isInteractive && !hasShell) {
state.log warn "BATCH MODE: for better performance hit [ENTER] to switch to interactive mode"
state.log warn "Executing in batch mode."
state.log warn " For better performance, hit [ENTER] to switch to interactive mode, or"
state.log warn " consider launching sbt without any commands, or explicitly passing 'shell'"
}
try run(loggedState) finally out.close()