mirror of
https://github.com/G2-Games/Old-Ores-MC.git
synced 2025-04-19 03:22:54 -05:00
Added simple build script and gitignore
This commit is contained in:
parent
ced7e64b8f
commit
0f5280da70
2 changed files with 15 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
build/
|
13
build.sh
Normal file → Executable file
13
build.sh
Normal file → Executable file
|
@ -1 +1,14 @@
|
|||
version="2.1.2"
|
||||
currentdir=$(pwd)
|
||||
|
||||
mkdir -p build/
|
||||
|
||||
cd build/ || exit 1
|
||||
|
||||
rm *
|
||||
exa -lh
|
||||
|
||||
7z a -tzip "Old.Ores.$version-Java.zip" ../Java/*
|
||||
7z a -tzip "Old.Ores.$version-Bedrock.mcpack" ../Bedrock/*
|
||||
|
||||
cd "$currentdir" || exit 1
|
||||
|
|
Loading…
Reference in a new issue