Skip to content

Commit

Permalink
fix previous merging
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed Dec 22, 2023
1 parent 149d0ae commit 3258268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ String fullModVersion = project.mod_version + versionSuffix
group = project.maven_group
if (System.getenv("JITPACK") == "true") {
// move mc version into archivesBaseName, so jitpack will be able to organize archives from multiple subprojects correctly
base.archivesName = project.archives_base_name + '-mc' + project.minecraft_version
base.archivesName = project.archives_base_name + '-mc' + project.minecraft_version + '-' + mod_brand
version = 'v' + fullModVersion
} else {
base.archivesName = project.archives_base_name
version = 'mc' + project.minecraft_version + '-v' + fullModVersion
version = 'mc' + project.minecraft_version + '-' + mod_brand + '-v' + fullModVersion
}

// See https://youtrack.jetbrains.com/issue/IDEA-296490
Expand Down

0 comments on commit 3258268

Please sign in to comment.