Skip to content

Commit

Permalink
Disable downloadAssets on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Jan 27, 2024
1 parent 12ed5bc commit 363f144
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,10 @@ tasks {
if (name == "runTestModClient") {
dependsOn(modDownload)
}

if (name == "downloadAssets" && providers.environmentVariable("CI").isPresent) {
enabled = false
}
}
}

Expand Down

0 comments on commit 363f144

Please sign in to comment.