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.
This commit is contained in:
Nick Guy 2025-06-02 22:16:10 +01:00
parent 04019b023d
commit 895f6c94b5

View file

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