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

View File

@@ -1,4 +1,9 @@
#!/bin/bash #!/bin/bash
rm system.zip pushd "build"
zip system.zip -r ../pokemon-foundry/ ./build.sh
popd
git add .
git commit -m ":sparkles:"
git push

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"

BIN
system.zip Normal file

Binary file not shown.