Skip to content

Commit

Permalink
Update FileSystem to use new CommandStack API.
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed May 5, 2014
1 parent 05c4666 commit 3a0a4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Task/FileSystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 3a0a4c6

Please sign in to comment.