Make binaries executable in migration

Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Joas Schilling 2020-09-05 18:08:01 -04:00 committed by Gary Kim
parent a07162109c
commit d2ef26a9cd
No known key found for this signature in database
GPG key ID: 9349B59FB54594AC

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);
}