Skip to content

Commit

Permalink
Merge pull request #96254 from raulsntos/android/keyStore.isEmpty()
Browse files Browse the repository at this point in the history
[Android] Check if `keyStore` path is empty
  • Loading branch information
akien-mga committed Aug 29, 2024
2 parents faa3688 + efe5f98 commit 526b35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/android/java/editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ext {
// Return the keystore file used for signing the release build.
getGodotKeystoreFile = { ->
def keyStore = System.getenv("GODOT_ANDROID_SIGN_KEYSTORE")
if (keyStore == null) {
if (keyStore == null || keyStore.isEmpty()) {
return null
}
return file(keyStore)
Expand Down

0 comments on commit 526b35c

Please sign in to comment.