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
1 changed files with 1 additions and 1 deletions

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']
}