Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
10 Zeilen
245 B
Bash
Ausführbare Datei
10 Zeilen
245 B
Bash
Ausführbare Datei
#!/bin/bash
|
|
|
|
(git submodule update --init && ./remap.sh && ./decompile.sh && ./init.sh && ./applyPatches.sh) || (
|
|
echo "Failed to build Paper"
|
|
exit 1
|
|
) || exit 1
|
|
if [ "$1" == "--jar" ]; then
|
|
(mvn clean install && ./paperclip.sh) || exit 1
|
|
fi
|