From 7c3d974f853c4acb42d6ee89fdddfad2f5ef90f1 Mon Sep 17 00:00:00 2001 From: Dakedres Date: Sat, 21 Feb 2026 00:07:39 -0700 Subject: [PATCH] Report what resource pack is being squashed --- build/packwiz | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build/packwiz b/build/packwiz index 02739ca..c2490ad 100755 --- a/build/packwiz +++ b/build/packwiz @@ -24,6 +24,7 @@ output_file_path = "%s.zip" package_resources() { printf %s\\n "$resource_list" | while read -r line do + printf %s\\n "Squashing resourcepack \"$line\"" create_config "$line" | packsquash done } @@ -49,11 +50,11 @@ BEGIN { ' index.toml } -resource_list="$(create_list "${root}/pack/config/paxi/resourcepacks")" +resource_list="$(create_list "${root}/pack/config/openloader/resources/")" # echo "$resource_list" -data_list="$(create_list "${root}/pack/config/paxi/datapacks")" +data_list="$(create_list "${root}/pack/config/openloader/data/")" mkdir -p "${root}/dist" @@ -67,6 +68,7 @@ cd "${root}/dist/pack" || exit setup_index packwiz cf export -o "${root}/dist/${TITLE}_Curseforge.zip" +packwiz mr export -o "${root}/dist/${TITLE}_Modrinth.zip" packwiz cf export -o "${root}/dist/${TITLE}_Server.zip" -s server cd - || exit