Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
js6pak committed Feb 8, 2024
1 parent 95282a8 commit 7c765ce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions minecraft/minecraft-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ dependencies {
// Include the external libraries on the classpath
def installerJson = new JsonSlurper().parse(rootProject.file("src/main/resources/fabric-installer.json"))
installerJson.libraries.common.each {
if (it.rules) {
if (it.rules.size() == 1 && it.rules.first().action == "disallow") {
return
}

throw new UnsupportedOperationException("Rules are not implemented yet")
}

productionRuntime it.name
}

Expand Down

0 comments on commit 7c765ce

Please sign in to comment.