Skip to content

Commit

Permalink
bug #28 Fix acl permissions (fon60)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.0.x-dev branch.

Discussion
----------

Fix acl permissions

Please review this as quickly as possible.

Commits
-------

94cd9c9 Fix acl permissions
  • Loading branch information
javiereguiluz committed Mar 31, 2018
2 parents 62153f7 + 94cd9c9 commit 5d2db94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Deployer/DefaultDeployer.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function getRequirements(): array
$requirements[] = new AllowsLoginViaSsh($allServers);
$requirements[] = new CommandExists($appServers, $this->getConfig(Option::remoteComposerBinaryPath));
if ('acl' === $this->getConfig(Option::permissionMethod)) {
$requirements[] = new CommandExists($appServers, $this->getConfig('setfacl'));
$requirements[] = new CommandExists($appServers, 'setfacl');
}

return $requirements;
Expand Down

0 comments on commit 5d2db94

Please sign in to comment.