diff --git a/src/Tasks/CollectionFactory/CollectionFactory.php b/src/Tasks/CollectionFactory/CollectionFactory.php index 334c34b..b26f753 100644 --- a/src/Tasks/CollectionFactory/CollectionFactory.php +++ b/src/Tasks/CollectionFactory/CollectionFactory.php @@ -138,11 +138,11 @@ protected function taskFactory($task) case "chgrp": return $this->taskFilesystemStack() - ->chgrp($task['file'], $task['group'], $task['umask'], $task['recursive']); + ->chgrp($task['file'], $task['group'], $task['recursive']); case "chown": return $this->taskFilesystemStack() - ->chown($task['file'], $task['user'], $task['umask'], $task['recursive']); + ->chown($task['file'], $task['user'], $task['recursive']); case "remove": return $this->taskFilesystemStack()->remove($task['file']);