diff --git a/export-pack.sh b/export-pack.sh index f9eb991..a5531c3 100755 --- a/export-pack.sh +++ b/export-pack.sh @@ -14,17 +14,8 @@ if [ ! -d overrides/mods ]; then mkdir -p overrides/mods fi; -# 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 don't exist, otherwise, update them -git clone "$mod_repo" "$basedir/deps/mc_rebalance" --branch 1.21 || (cd "$basedir/deps/mc_rebalance"; git checkout 1.21; git pull) || exit 1 +# Clone the mod repo, if it already exists then update it +git clone --single-branch -b 1.21.1 "https://patience.nearmisses.xyz/patience/mc_rebalance.git" "$basedir/deps/mc_rebalance" --branch 1.21 || (cd "$basedir/deps/mc_rebalance"; git checkout 1.21; git pull) || exit 1 rm "$basedir/deps/mc_rebalance/build/libs/mc_rebalance-"*".jar" (cd "$basedir"/deps/mc_rebalance/ && ./gradlew build)