From 9c2fa5c833782e4b9c08074d896097128f614baa Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Tue, 12 Oct 2021 21:43:02 +0200 Subject: [PATCH] build: Revert to python binary This reverts commit d413912716db808d1f67d48c6246827ae6080c8e. --- syncthing/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncthing/build.gradle b/syncthing/build.gradle index be363cd0..7816eb00 100644 --- a/syncthing/build.gradle +++ b/syncthing/build.gradle @@ -1,7 +1,7 @@ task buildNative(type: Exec) { inputs.dir("$projectDir/src/") outputs.dir("$projectDir/../app/src/main/jniLibs/") - executable = 'python3' + executable = 'python' args = ['-u', './build-syncthing.py'] }