From 895f6c94b559c90f9f720eb6be3495bc4794ada5 Mon Sep 17 00:00:00 2001 From: Nick Guy Date: Mon, 2 Jun 2025 22:16:10 +0100 Subject: [PATCH] Add debug log for script deployment in load-script.sh This commit adds a log message to indicate when and where the script file is being deployed. This improves clarity and helps with troubleshooting during resource pack generation. --- load-script.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/load-script.sh b/load-script.sh index a3b0b9d..4f8797c 100755 --- a/load-script.sh +++ b/load-script.sh @@ -20,6 +20,7 @@ fi # Instantiate template map_file="${DIR}/templates/texture-pack/assets/minecraft/textures/map/map_background.png" rm ${map_file} +echo "Deploying \"${script_file}\" to \"${map_file}\"" cp ${script_file} ${map_file} # Package resource pack pushd "${DIR}/templates"