1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-12-23 11:21:29 +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 6ac8ccea36
commit c505c1b525
No known key found for this signature in database
GPG key ID: 7C31D23ECB1006F3

View file

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