Skip to content

Commit a89ecb5

Browse files
Fix import issues on computers without the publish secret keys
1 parent e990dbb commit a89ecb5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ install {
6767
}
6868
}
6969

70+
if (!ext.has('gamemodsBintrayUser')) {
71+
ext.gamemodsBintrayUser = ""
72+
}
73+
if (!ext.has('gamemodsBintrayApiKey')) {
74+
ext.gamemodsBintrayApiKey = ""
75+
}
76+
7077
bintray {
7178
user = "$gamemodsBintrayUser"
7279
key = "$gamemodsBintrayApiKey"

0 commit comments

Comments
 (0)