Files
AkarinMC/scripts/inst.sh
bradd evans 5c9567e797 update campfire to the latest 1.14.4 version on craftbukkit
update pom.xml to use a repo with almost every single lib you would ever need since nallar has been down for a year
update maven command to fully skip tests propperly
update work/paper
2019-12-20 16:58:56 +00:00

13 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
(
set -e
basedir="$(pwd -P)"
version="master"
(git submodule update --init --remote && cd "$basedir" && chmod +x scripts/build.sh && ./scripts/build.sh "$basedir" "$1" "$2" "$3") || (
echo "Failed to build Akarin"
exit 1
) || exit 1
)