2015-12-29 20:40:32 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-03-24 20:39:20 -04:00
|
|
|
(git submodule update --init && ./remap.sh && ./decompile.sh && ./init.sh && ./applyPatches.sh) || (
|
|
|
|
echo "Failed to build Paper"
|
|
|
|
exit 1
|
|
|
|
) || exit 1
|
2016-03-18 01:46:32 -04:00
|
|
|
if [ "$1" == "--jar" ]; then
|
2016-03-24 20:39:20 -04:00
|
|
|
(mvn clean install && ./paperclip.sh) || exit 1
|
2016-03-18 01:46:32 -04:00
|
|
|
fi
|