polish build script

This commit is contained in:
endernon 2024-11-12 19:21:56 +00:00
parent f1bf47dc5a
commit 67e6b95043
2 changed files with 23 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
build build
build.zip

22
build.sh Executable file
View file

@ -0,0 +1,22 @@
# create the build dir if it doesn't already exist
mkdir -p ./build
# move all necessary files to the build dir
cp -r {assets,pack.png,pack.mcmeta} ./build
# change working dir into the build dir
cd build
# remove all the gimp files (those don't do anything in the final build)
find . -name "*.xcf" -type f -delete
# zip all files in build dir recursively, into build.zip in base folder. use -0 flag to disable compression.
zip -r ../build.zip . -0
# change back to root dir
cd ..
# nuke the build dir
rm -r build
echo "file built to build.zip"