2
0

Execute gradle scripts with bash.

This commit is contained in:
Maarten Billemont
2018-06-25 10:34:56 -04:00
parent 8276d2f4e5
commit 8ffc0ae350
3 changed files with 5 additions and 8 deletions

View File

@@ -56,10 +56,10 @@ dependencies {
preBuild {
dependsOn task( type: Exec, 'buildLibSodium', {
commandLine "$projectDir/../lib/bin/build_libsodium-android"
commandLine 'bash', "$rootDir/../lib/bin/build_libsodium-android"
} )
dependsOn task( type: Exec, 'buildLibJson-c', {
commandLine "$projectDir/../lib/bin/build_libjson-c-android"
commandLine 'bash', "$rootDir/../lib/bin/build_libjson-c-android"
} )
}