This commit is contained in:
2025-08-03 13:24:57 +02:00
parent c100393675
commit 0c0033e836
4 changed files with 25 additions and 2 deletions

4
build/.ignore Normal file
View File

@@ -0,0 +1,4 @@
.git*
__pycache__
.vscode
build

14
build/build.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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"