forgotten-lands-cd2025/scripts/copy_textures.sh
2024-05-09 02:37:44 -04:00

10 lines
294 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/textures/textures/
echo "Done."
echo "Copying over texture files..."
cp -r source/textures/textures/* mods/textures/textures/
echo "Done."