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
13 lines
259 B
Bash
Executable File
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
|
|
|
|
) |