forgotten-lands-cd2025/scripts/copy_textures.sh
2024-04-15 05:48:51 -04:00

10 lines
340 B
Bash
Executable File

#!/bin/bash
# This hackjob copies over all the textures into the compiled build.
# EVERY. TIME.
echo "Trying to make the textures directory..."
mkdir mods/sharpik_texture_pack/textures/
echo "Done."
echo "Copying over texture files..."
cp --verbose -r source/sharpik_texture_pack/textures/* mods/sharpik_texture_pack/textures/
echo "Done."