Skip to content

Commit

Permalink
Don't change the name of the jar if in the jitpack env
Browse files Browse the repository at this point in the history
  • Loading branch information
md5sha256 committed Dec 6, 2023
1 parent 3c953ad commit e4b5398
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AreaShop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ tasks {
}

jar {
archiveClassifier.set("original")
if (!providers.systemProperty("JITPACK").isPresent) {
archiveClassifier.set("original")
}
}

java {
Expand Down

0 comments on commit e4b5398

Please sign in to comment.