From 04019b023dae576487af151ab33716458de44fe7 Mon Sep 17 00:00:00 2001 From: Nick Guy Date: Mon, 2 Jun 2025 22:14:25 +0100 Subject: [PATCH] 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. --- load-script.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/load-script.sh b/load-script.sh index 3ed7601..a3b0b9d 100755 --- a/load-script.sh +++ b/load-script.sh @@ -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 \ No newline at end of file