mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Fix 'bad mode' error when chmodding with +x
This commit is contained in:
parent
93eeb22473
commit
8f6c20b929
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public class SyncthingRunnable implements Runnable {
|
|||
int ret = 1;
|
||||
// Make sure Syncthing is executable
|
||||
try {
|
||||
ProcessBuilder pb = new ProcessBuilder("chmod", "+x", mSyncthingBinary);
|
||||
ProcessBuilder pb = new ProcessBuilder("chmod", "500", mSyncthingBinary);
|
||||
Process p = pb.start();
|
||||
p.waitFor();
|
||||
} catch (IOException|InterruptedException e) {
|
||||
|
|
Loading…
Reference in a new issue