Skip to content

Commit

Permalink
New line after the stdout too
Browse files Browse the repository at this point in the history
Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Jun 13, 2023
1 parent 8efb413 commit 4ef8197
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -204,7 +204,7 @@ private AsadminResult exec(final int timeout, final boolean detachedAndTerse, fi
result = new AsadminResult(args[0], exitCode, processManager.getStdout(), stdErr);
}
if (!result.getStdOut().isEmpty()) {
System.out.print(result.getStdOut());
System.out.println(result.getStdOut());
}
if (!result.getStdErr().isEmpty()) {
System.err.println(result.getStdErr());
Expand Down

0 comments on commit 4ef8197

Please sign in to comment.