Skip to content

Commit d3d002a

Browse files
wachterjohanneschirimoya
authored andcommitted
fixed environment argument (#43)
1 parent c91f335 commit d3d002a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Executor/ExecutionProcessFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct($consolePath, $environment)
4040
public function create($uuid)
4141
{
4242
return $process = ProcessBuilder::create(
43-
[$this->consolePath, 'task:execute', $uuid, '-e ' . $this->environment]
43+
[$this->consolePath, 'task:execute', $uuid, '--env=' . $this->environment]
4444
)->getProcess();
4545
}
4646
}

0 commit comments

Comments
 (0)