Skip to content
Snippets Groups Projects
Commit 2cdcba04 authored by Robin Appelman's avatar Robin Appelman
Browse files

ensure binary is marked as executable

parent 96a46920
No related branches found
Tags v0.1.1
No related merge requests found
......@@ -7,7 +7,7 @@
<description><![CDATA[Push update support for desktop app.
Once the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions]]></description>
<version>0.1.0</version>
<version>0.1.1</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>NotifyPush</namespace>
......
......@@ -79,6 +79,7 @@ class SetupWizard {
public function testBinary(): bool {
$path = $this->getBinaryPath();
@chmod($path, 0755);
$appVersion = $this->appManager->getAppVersion("notify_push");
$output = [];
exec("$path --version", $output);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment