Report what resource pack is being squashed

This commit is contained in:
2026-02-21 00:07:39 -07:00
parent cb6c8e0f24
commit 7c3d974f85

View File

@@ -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