polish build script
This commit is contained in:
parent
f1bf47dc5a
commit
67e6b95043
2 changed files with 23 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
build
|
||||
build.zip
|
||||
|
|
22
build.sh
Executable file
22
build.sh
Executable 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"
|
Loading…
Reference in a new issue