Add log message after zipping resource pack

This change adds an echo statement to log the file path of the generated ZIP file. It helps clarify where the resource pack is being written for better debugging and visibility.
This commit is contained in:
Nick Guy 2025-06-02 22:14:25 +01:00
parent a334ba6823
commit 04019b023d

View file

@ -26,4 +26,5 @@ pushd "${DIR}/templates"
mkdir -p "${root_dir}/files"
rm "${root_dir}/files/botc-script-resource-pack.zip"
zip -r "${root_dir}/files/botc-script-resource-pack.zip" texture-pack
echo "Writing to \"${root_dir}/files/botc-script-resource-pack.zip\""
popd