Compare commits

..

No commits in common. "main" and "1.3.0" have entirely different histories.
main ... 1.3.0

2 changed files with 12 additions and 3 deletions

View file

@ -119,7 +119,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial release
[unreleased]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.3.0...HEAD
[1.3.0]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.2.0...1.3.0
[1.2.0]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.2.0...1.3.0
[1.2.0]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.1.3...1.2.0
[1.1.3]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.1.2...1.1.3
[1.1.2]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/1.1.1...1.1.2

View file

@ -9,8 +9,17 @@ if [ ! -d deps ]; then
mkdir deps
fi;
# Clone the mod repo, if it already exists then update it
git clone --single-branch -b main "https://patience.nearmisses.xyz/patience/mc_rebalance.git" "$basedir/deps/mc_rebalance" || (cd "$basedir/deps/mc_rebalance"; git pull) || exit 1
# If the user provides input e.g. `./export-pack.sh 1`, clone the repository using https
if [ -n "$1" ]; then
repo_prefix="https://patience.nearmisses.xyz/"
else
repo_prefix="forgejo@patience.nearmisses.xyz:"
fi
mod_repo="$repo_prefix/patience/mc_rebalance.git"
# Clone the repos if they exist, otherwise, update them
git clone "$mod_repo" "$basedir/deps/mc_rebalance" || (cd "$basedir/deps/mc_rebalance"; git pull) || exit 1
rm "$basedir/deps/mc_rebalance/build/libs/mc_rebalance-"*".jar"
(cd "$basedir"/deps/mc_rebalance/ && ./gradlew build)