We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4becc commit 6afdf4bCopy full SHA for 6afdf4b
scripts/templates/android/ofApp/build.gradle
@@ -237,15 +237,9 @@ task checkAndBuildOF {
237
knownABIs.each { arch ->
238
if (!doesOFSoFileExist(arch)) {
239
println "openFrameworks library missing for $arch! Running CMake build..."
240
- if(isWindows) {
241
- exec {
242
- commandLine '"C:\\Program Files\\Git\\bin\\bash.exe"'
243
- args cmakeScriptPath
244
- }
245
- } else {
246
247
- commandLine 'bash', cmakeScriptPath
248
+ exec {
+ commandLine gitBashPath
+ args cmakeScriptPath
249
}
250
} else {
251
println "openFrameworks library exists for $arch"
0 commit comments