Skip to content

Commit bbef8d6

Browse files
committed
Fix property name for curseforge key
1 parent 17ddc88 commit bbef8d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ curse {
178178
dependsOn 'reobf'
179179

180180
onlyIf {
181-
return project.hasProperty('chisel_curseforge_key') && System.getenv("CURSE") != null && System.getenv("CURSE").equalsIgnoreCase("true")
181+
return project.hasProperty('curseforge_key') && System.getenv("CURSE") != null && System.getenv("CURSE").equalsIgnoreCase("true")
182182
}
183183

184-
if (project.hasProperty('chisel_curseforge_key')) apiKey = project.chisel_curseforge_key
184+
if (project.hasProperty('curseforge_key')) apiKey = project.curseforge_key
185185
projectId = project.projectId
186186
changelog = System.getenv("CHANGELOG").equals("none") ? getChangelogText() : System.getenv("CHANGELOG")
187187
releaseType = 'release'

0 commit comments

Comments
 (0)