Skip to content

Commit

Permalink
How does jitpack even manage to break only the uppercase version? Thi…
Browse files Browse the repository at this point in the history
…s has been an issue for years.
  • Loading branch information
buthed010203 committed Oct 14, 2024
1 parent 3b7f891 commit c056ccf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import java.io.File
import java.util.*

plugins {
Expand All @@ -12,7 +13,7 @@ repositories {
dependencies {
val arcHash = Properties(20).apply { load(file("../gradle.properties").inputStream()) }["archash"]
val localArc = File(rootDir.parentFile.parent, "Arc").exists() && !project.hasProperty("noLocalArc")
implementation("com.github.mindustry-antigrief${if (localArc) "" else ".Arc"}:arc-core:$arcHash")
implementation("com.github.mindustry-antigrief${if (localArc) "" else ".arc"}:arc-core:$arcHash")
}

// I swear gradle is the worst
Expand Down

0 comments on commit c056ccf

Please sign in to comment.