diff --git a/src/Task/FileSystem.php b/src/Task/FileSystem.php index 3527ee945..3e1a0ddce 100644 --- a/src/Task/FileSystem.php +++ b/src/Task/FileSystem.php @@ -320,13 +320,13 @@ class FileSystemStackTask extends CommandStack { public function mkdir($dirs = [], $options = null) { - $this->pushCommand([__FUNCTION__, implode(' ', (array)$dirs)], $options); + $this->exec([__FUNCTION__, implode(' ', (array)$dirs)], $options); return $this; } public function touch($files = []) { - $this->pushCommand([__FUNCTION__, implode(' ', (array)$dirs)]); + $this->exec([__FUNCTION__, implode(' ', (array)$dirs)]); return $this; } }