Skip to content

Commit

Permalink
Fix wrong boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotori316 committed Dec 3, 2023
1 parent 7c3aae0 commit 51a14c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ tasks.register("registerVersion", CallVersionFunctionTask.class) {
platform = "forge"
modName = archivesBaseName
changelog = "For ${libs.versions.minecraft.get()} with ${libs.versions.scala3.get()}"
isDryRun = !RELEASE_DEBUG
isDryRun = RELEASE_DEBUG
homepage = "https://www.curseforge.com/minecraft/mc-mods/scalable-cats-force"
}

Expand All @@ -298,5 +298,5 @@ tasks.register("checkReleaseVersion", CallVersionCheckFunctionTask.class) {
platform = "forge"
modName = archivesBaseName
version = project.version as String
failIfExists = RELEASE_DEBUG
failIfExists = !RELEASE_DEBUG
}
4 changes: 2 additions & 2 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ tasks.register("registerVersion", CallVersionFunctionTask.class) {
platform = "neoforge"
modName = archivesBaseName
changelog = "For ${libs.versions.minecraft.get()} with ${libs.versions.scala3.get()}"
isDryRun = !RELEASE_DEBUG
isDryRun = RELEASE_DEBUG
homepage = "https://www.curseforge.com/minecraft/mc-mods/scalable-cats-force"
}

Expand All @@ -262,5 +262,5 @@ tasks.register("checkReleaseVersion", CallVersionCheckFunctionTask.class) {
platform = "neoforge"
modName = archivesBaseName
version = project.version as String
failIfExists = RELEASE_DEBUG
failIfExists = !RELEASE_DEBUG
}

0 comments on commit 51a14c6

Please sign in to comment.