Skip to content

Commit 5d2db94

Browse files
committed
bug #28 Fix acl permissions (fon60)
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
2 parents 62153f7 + 94cd9c9 commit 5d2db94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Deployer/DefaultDeployer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function getRequirements(): array
4343
$requirements[] = new AllowsLoginViaSsh($allServers);
4444
$requirements[] = new CommandExists($appServers, $this->getConfig(Option::remoteComposerBinaryPath));
4545
if ('acl' === $this->getConfig(Option::permissionMethod)) {
46-
$requirements[] = new CommandExists($appServers, $this->getConfig('setfacl'));
46+
$requirements[] = new CommandExists($appServers, 'setfacl');
4747
}
4848

4949
return $requirements;

0 commit comments

Comments
 (0)