Skip to content

Commit f309aa0

Browse files
committed
Fix build issues
1 parent 57c0b91 commit f309aa0

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Blåhaj Mod doesn't have a very well structured build system — in fact, each m
2020
cd platform-${loader}-${version}
2121
./gradlew build
2222

23+
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).
24+
2325
Inspired by [Unascribed's Ears](https://git.sleeping.town/unascribed/Ears).
2426

2527
## License

platform-quilt-1.18/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
processResources {
3535
inputs.property "version", version
3636

37-
filesMatching('quilt.mod.json') {
37+
filesMatching('*.mod.json') {
3838
expand "version": version
3939
}
4040
}

platform-quilt-1.19.3/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
processResources {
3232
inputs.property "version", version
3333

34-
filesMatching('quilt.mod.json') {
34+
filesMatching('*.mod.json') {
3535
expand "version": version
3636
}
3737
}

platform-quilt-1.19/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
processResources {
3535
inputs.property "version", version
3636

37-
filesMatching('quilt.mod.json') {
37+
filesMatching('*.mod.json') {
3838
expand "version": version
3939
}
4040
}

platform-quilt-1.20.1/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
processResources {
3232
inputs.property "version", version
3333

34-
filesMatching('quilt.mod.json') {
34+
filesMatching('*.mod.json') {
3535
expand "version": version
3636
}
3737
}

platform-quilt-1.20.1/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ org.gradle.parallel = true
44

55
# Mod Properties
66
maven_group = hibi
7-
archives_base_name = blahaj-quilt-1.19.3
7+
archives_base_name = blahaj-quilt-1.20.1
88

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

0 commit comments

Comments
 (0)