mirror of
https://github.com/G2-Games/Old-Ores-MC.git
synced 2025-04-19 11:32:53 -05:00
14 lines
224 B
Bash
Executable file
14 lines
224 B
Bash
Executable file
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
|