Skip to content

Commit

Permalink
Replicate CurseGradle mdk behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Nov 20, 2023
1 parent c47d502 commit b8b23f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jar {
}

curseforge {
apiKey = project.findProperty('curseApiKey')
apiKey = project.findProperty('curseApiKey') ?: 'unset'
project {
id = '565956'

Expand Down
2 changes: 1 addition & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ processResources {
jar.finalizedBy('reobfJar')

curseforge {
apiKey = project.findProperty('curseApiKey')
apiKey = project.findProperty('curseApiKey') ?: 'unset'
project {
id = '563928'

Expand Down
2 changes: 1 addition & 1 deletion NeoForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tasks.withType(ProcessResources).excludingNeoTasks().configureEach {
}

curseforge {
apiKey = project.findProperty('curseApiKey')
apiKey = project.findProperty('curseApiKey') ?: 'unset'
project {
id = '940057'

Expand Down

0 comments on commit b8b23f4

Please sign in to comment.