diff options
author | zaevi <zaevi@live.com> | 2021-01-30 20:13:01 +0800 |
---|---|---|
committer | zaevi <zaevi@live.com> | 2021-01-30 20:13:01 +0800 |
commit | befbfecd4d3c65832c06c44c26d6f7c07e841c47 (patch) | |
tree | f1b89778780f5df2a3631c3f5d51fd173882b5f6 /platform/android/java | |
parent | 46de553473b4bea49176fb4316176a5662931160 (diff) |
add search extensions for scons' path
Diffstat (limited to 'platform/android/java')
-rw-r--r-- | platform/android/java/lib/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/lib/build.gradle b/platform/android/java/lib/build.gradle index 89ce3d15e6..6260cadffb 100644 --- a/platform/android/java/lib/build.gradle +++ b/platform/android/java/lib/build.gradle @@ -68,7 +68,7 @@ android { File sconsExecutableFile = null def sconsName = "scons" def sconsExts = (org.gradle.internal.os.OperatingSystem.current().isWindows() - ? [".bat", ".exe"] + ? [".bat", ".cmd", ".ps1", ".exe"] : [""]) logger.lifecycle("Looking for $sconsName executable path") for (ext in sconsExts) { |