From abd26b2b0ad7e850f8a6c81ada162636835bca23 Mon Sep 17 00:00:00 2001 From: Gordon Heydon Date: Thu, 8 Mar 2018 16:02:54 +1100 Subject: [PATCH] Fix up issue with setting the volume --- src/Task/Execute.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Task/Execute.php b/src/Task/Execute.php index b1b496b..542a694 100644 --- a/src/Task/Execute.php +++ b/src/Task/Execute.php @@ -148,6 +148,6 @@ class Execute extends Base */ public function getCommand() { - return parent::getCommand() . "{$this->container} {$this->command}"; + return parent::getCommand() . " {$this->container} {$this->command}"; } }