Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hibiii committed Jun 18, 2023
1 parent 57c0b91 commit f309aa0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Blåhaj Mod doesn't have a very well structured build system — in fact, each m
cd platform-${loader}-${version}
./gradlew build

If you'd like a one-liner that builds everything, then `for platform in $(ls -d platform-*); do pushd "$platform"; ./gradlew build; popd; done` on the root of the project (POSIX sh only or compatible).

Inspired by [Unascribed's Ears](https://git.sleeping.town/unascribed/Ears).

## License
Expand Down
2 changes: 1 addition & 1 deletion platform-quilt-1.18/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
processResources {
inputs.property "version", version

filesMatching('quilt.mod.json') {
filesMatching('*.mod.json') {
expand "version": version
}
}
Expand Down
2 changes: 1 addition & 1 deletion platform-quilt-1.19.3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
processResources {
inputs.property "version", version

filesMatching('quilt.mod.json') {
filesMatching('*.mod.json') {
expand "version": version
}
}
Expand Down
2 changes: 1 addition & 1 deletion platform-quilt-1.19/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
processResources {
inputs.property "version", version

filesMatching('quilt.mod.json') {
filesMatching('*.mod.json') {
expand "version": version
}
}
Expand Down
2 changes: 1 addition & 1 deletion platform-quilt-1.20.1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
processResources {
inputs.property "version", version

filesMatching('quilt.mod.json') {
filesMatching('*.mod.json') {
expand "version": version
}
}
Expand Down
2 changes: 1 addition & 1 deletion platform-quilt-1.20.1/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ org.gradle.parallel = true

# Mod Properties
maven_group = hibi
archives_base_name = blahaj-quilt-1.19.3
archives_base_name = blahaj-quilt-1.20.1

# Dependencies are managed at gradle/libs.versions.toml

0 comments on commit f309aa0

Please sign in to comment.