Skip to content

Commit

Permalink
Issue #154: The 'chgrp' & 'chown' tasks don't have a 'umask' attrib.
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiu-cristea committed Sep 10, 2021
1 parent 26a7390 commit 24df13d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tasks/CollectionFactory/CollectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down

0 comments on commit 24df13d

Please sign in to comment.