Files
pokemon-foundry/build/build.sh
2025-08-03 13:24:57 +02:00

15 lines
283 B
Bash
Executable File

#!/bin/bash
CWD="$(dirname $(realpath $0))"
mkdir "pokemon-foundry"
rsync --progress \
--recursive \
--prune-empty-dirs \
--exclude-from="${CWD}/.ignore" \
"../" "pokemon-foundry"
zip -9r "../system.zip" "pokemon-foundry"
rm --force --recursive "pokemon-foundry"