mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
Separate arguments with a space while writing
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user