Skip to content

Commit a4e29b6

Browse files
committed
No longer requires deployment keys just to develop locally.
1 parent 516d4b7 commit a4e29b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def isSnapshot = project.version.endsWith('-SNAPSHOT')
128128
def cred = {
129129
if (System.env[it] != null) {
130130
return System.env[it]
131-
} else if (project[it] != null) {
131+
} else if (project.hasProperty(it)) {
132132
return project[it]
133133
} else {
134134
return 'unknown_' + it

0 commit comments

Comments
 (0)