1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-23 12:51:16 +00:00

Disable ST upgrade in runnable (fixes #276).

This commit is contained in:
Lode Hoste 2015-03-22 14:21:48 +01:00
parent db0da97cc4
commit bab2243424

View file

@ -51,6 +51,7 @@ public class SyncthingRunnable implements Runnable {
dos.writeBytes("HOME=" + Environment.getExternalStorageDirectory() + " "); dos.writeBytes("HOME=" + Environment.getExternalStorageDirectory() + " ");
dos.writeBytes("STTRACE=" + pm.getString("sttrace", "") + " "); dos.writeBytes("STTRACE=" + pm.getString("sttrace", "") + " ");
dos.writeBytes("STNORESTART=1 "); dos.writeBytes("STNORESTART=1 ");
dos.writeBytes("STNOUPGRADE=1 ");
// Call syncthing with -home (as it would otherwise use "~/.config/syncthing/". // Call syncthing with -home (as it would otherwise use "~/.config/syncthing/".
dos.writeBytes(mCommand + " -home " + mContext.getFilesDir() + "\n"); dos.writeBytes(mCommand + " -home " + mContext.getFilesDir() + "\n");
dos.writeBytes("exit\n"); dos.writeBytes("exit\n");