Files
AkarinMC/scripts/build.sh
LegacyGamerHD b510185638 Update build.sh
2021-03-29 19:28:31 +02:00

55 lines
1.5 KiB
Bash

#!/usr/bin/env bash
(
set -e
basedir="$(cd "$1" && pwd -P)"
workdir="$basedir/work"
paperbasedir="$basedir/work/Paper"
paperworkdir="$basedir/work/Paper/work"
#if [ "$2" == "--setup" ] || [ "$3" == "--setup" ] || [ "$4" == "--setup" ]; then
#echo "[Akarin] Setup Paper.."
# (
# if [ "$2" == "--remote" ] || [ "$3" == "--remote" ] || [ "$4" == "--remote" ]; then
# cd "$paperworkdir"
# if [ -d "Minecraft" ]; then
# rm Minecraft/ -r
# fi
# git clone https://github.com/LegacyGamerHD/Minecraft.git
# fi
#
# cd "$paperbasedir"
# ./paper jar
# )
#fi
echo "[Akarin] Ready to build"
(
echo "[Akarin] Touch sources.."
cd "$paperbasedir"
if [ "$2" == "--fast" ] || [ "$3" == "--fast" ] || [ "$4" == "--fast" ]; then
echo "[Akarin] Test has been skipped"
\cp -rf "$basedir/sources/src" "$paperbasedir/Paper-Server/"
\cp -rf "$basedir/sources/pom.xml" "$paperbasedir/Paper-Server/"
mvn clean install -DskipTests
else
rm -rf Paper-API/src
rm -rf Paper-Server/src
./paper patch
\cp -rf "$basedir/sources/src" "$paperbasedir/Paper-Server/"
\cp -rf "$basedir/sources/pom.xml" "$paperbasedir/Paper-Server/"
mvn clean install
fi
minecraftversion=$(cat "$paperworkdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
rawjar="$paperbasedir/Paper-Server/target/akarin-$minecraftversion.jar"
\cp -rf "$rawjar" "$basedir/akarin-$minecraftversion.jar"
echo ""
echo "[Akarin] Build successful"
echo "[Akarin] Migrated final jar to $basedir/akarin-$minecraftversion.jar"
)
)