From kde-commits Thu May 31 23:28:34 2018 From: Aleix Pol Date: Thu, 31 May 2018 23:28:34 +0000 To: kde-commits Subject: [sysadmin/binary-factory-tooling] android: FDroid: turns out cwd= was not correct Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=152780932517631 Git commit 931f9ca9bd51181280652e6791ee89926e6b06d2 by Aleix Pol. Committed on 31/05/2018 at 23:27. Pushed by apol into branch 'master'. FDroid: turns out cwd=3D was not correct M +2 -2 android/generaterepo.py https://commits.kde.org/sysadmin/binary-factory-tooling/931f9ca9bd511812806= 52e6791ee89926e6b06d2 diff --git a/android/generaterepo.py b/android/generaterepo.py index d112d82..05c86b4 100644 --- a/android/generaterepo.py +++ b/android/generaterepo.py @@ -40,7 +40,7 @@ with open("current-jobs.json") as f: = #fdroid =3D "docker run --rm -u $(id -u):$(id -g) -v $(pwd):/repo registry= .gitlab.com/fdroid/docker-executable-fdroidserver:latest" fdroid =3D "fdroid" -subprocess.check_call(fdroid + " update", shell=3DTrue, cwd=3Ddest) -subprocess.check_call(fdroid + " server update -v", shell=3DTrue, cwd=3Dde= st) +subprocess.check_call(fdroid + " update", shell=3DTrue) +subprocess.check_call(fdroid + " server update -v", shell=3DTrue) = =20