Separate arguments with a space while writing
This commit is contained in:
parent
d4d8197244
commit
2059cf221b
|
@ -112,7 +112,7 @@ func NewExecutor(logger *log.Logger) Executor {
|
|||
// LaunchCmd launches a process and returns it's state. It also configures an
|
||||
// applies isolation on certain platforms.
|
||||
func (e *UniversalExecutor) LaunchCmd(command *ExecCommand, ctx *ExecutorContext) (*ProcessState, error) {
|
||||
e.logger.Printf("[DEBUG] executor: launching command %v %v", command.Cmd, strings.Join(command.Args, ""))
|
||||
e.logger.Printf("[DEBUG] executor: launching command %v %v", command.Cmd, strings.Join(command.Args, " "))
|
||||
|
||||
e.ctx = ctx
|
||||
|
||||
|
|
Loading…
Reference in New Issue