* add \n after each script execution (useful for looking at logs later and having empty line separators)

This commit is contained in:
Reinhard Pointner 2015-05-02 18:31:43 +00:00
parent 91fbafebcb
commit 512dc75495
1 changed files with 1 additions and 0 deletions

View File

@ -165,6 +165,7 @@ public class Main {
// CLI mode => run command-line interface and then exit // CLI mode => run command-line interface and then exit
if (args.runCLI()) { if (args.runCLI()) {
int status = new ArgumentProcessor().process(args, new CmdlineOperations()); int status = new ArgumentProcessor().process(args, new CmdlineOperations());
System.out.println();
System.exit(status); System.exit(status);
} }