✨
This commit is contained in:
4
build/.ignore
Normal file
4
build/.ignore
Normal file
@@ -0,0 +1,4 @@
|
||||
.git*
|
||||
__pycache__
|
||||
.vscode
|
||||
build
|
||||
14
build/build.sh
Executable file
14
build/build.sh
Executable 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"
|
||||
|
||||
Reference in New Issue
Block a user