Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
no redirection of error output to standard output
  • Loading branch information
Nicolas Marsal committed Mar 29, 2017
commit 7c5656f77d173a263de27176ed3f77945753470f
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Process execute(String... commands) throws IOException {
.add(defaultDockerComposePath())
.add(commands)
.build();
return new ProcessBuilder(args).redirectErrorStream(true).start();
return new ProcessBuilder(args).redirectErrorStream(false).start();
}
}, log::trace);

Expand Down Expand Up @@ -97,7 +97,7 @@ public Process execute(String... commands) throws IOException {

return dockerConfiguration().configuredDockerComposeProcess()
.command(args)
.redirectErrorStream(true)
.redirectErrorStream(false)
.start();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Process execute(String... commands) throws IOException {

return dockerConfiguration().configuredDockerComposeProcess()
.command(args)
.redirectErrorStream(true)
.redirectErrorStream(false)
.start();
}

Expand Down