1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-25 22:01:16 +00:00

build: Docker image has only python3 now

This commit is contained in:
Simon Frei 2021-09-07 19:20:44 +02:00
parent 89735d2c08
commit d413912716
No known key found for this signature in database
GPG key ID: 7C31D23ECB1006F3

View file

@ -1,7 +1,7 @@
task buildNative(type: Exec) {
inputs.dir("$projectDir/src/")
outputs.dir("$projectDir/../app/src/main/jniLibs/")
executable = 'python'
executable = 'python3'
args = ['-u', './build-syncthing.py']
}