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