Skip to content

Commit 94cd9c9

Browse files
committed
Fix acl permissions
1 parent ec75cf0 commit 94cd9c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Deployer/DefaultDeployer.php

Lines changed: 1 addition & 1 deletion
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)