15 lines
283 B
Bash
Executable File
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"
|
|
|