We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ddc88 commit bbef8d6Copy full SHA for bbef8d6
build.gradle
@@ -178,10 +178,10 @@ curse {
178
dependsOn 'reobf'
179
180
onlyIf {
181
- return project.hasProperty('chisel_curseforge_key') && System.getenv("CURSE") != null && System.getenv("CURSE").equalsIgnoreCase("true")
+ return project.hasProperty('curseforge_key') && System.getenv("CURSE") != null && System.getenv("CURSE").equalsIgnoreCase("true")
182
}
183
184
- if (project.hasProperty('chisel_curseforge_key')) apiKey = project.chisel_curseforge_key
+ if (project.hasProperty('curseforge_key')) apiKey = project.curseforge_key
185
projectId = project.projectId
186
changelog = System.getenv("CHANGELOG").equals("none") ? getChangelogText() : System.getenv("CHANGELOG")
187
releaseType = 'release'
0 commit comments