Skip to content

Commit 526b35c

Browse files
committed
Merge pull request godotengine#96254 from raulsntos/android/keyStore.isEmpty()
[Android] Check if `keyStore` path is empty
2 parents faa3688 + efe5f98 commit 526b35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/android/java/editor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ext {
3737
// Return the keystore file used for signing the release build.
3838
getGodotKeystoreFile = { ->
3939
def keyStore = System.getenv("GODOT_ANDROID_SIGN_KEYSTORE")
40-
if (keyStore == null) {
40+
if (keyStore == null || keyStore.isEmpty()) {
4141
return null
4242
}
4343
return file(keyStore)

0 commit comments

Comments
 (0)