Merge pull request #8 from nextcloud/fix/2/+x

Make binaries executable in migration
This commit is contained in:
Joas Schilling 2020-09-09 09:15:53 +02:00 committed by GitHub
commit c29e9a760f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,6 +67,9 @@ class RegisterBinary implements IRepairStep {
}
}
// Make all binaries executable
chmod($binaryPath, 0755);
// Write the app config
$this->config->setAppValue('spreed', 'matterbridge_binary', $binaryPath);
}