geforkt von Mirrors/Paper
Rebuild patches after we continue from a paper edit.
Dieser Commit ist enthalten in:
Ursprung
51af958804
Commit
7effde04b1
50
paper
50
paper
@ -49,29 +49,37 @@ case "$1" in
|
||||
cd "$basedir"
|
||||
;;
|
||||
"e" | "edit")
|
||||
if [[ "$2" = "server" ]] ; then
|
||||
cd "$basedir/Paper-Server"
|
||||
export LAST_EDIT=$(pwd)
|
||||
case "$2" in
|
||||
"server")
|
||||
cd "$basedir/Paper-Server"
|
||||
export LAST_EDIT=$(pwd)
|
||||
|
||||
paperstash
|
||||
git rebase -i upstream/upstream
|
||||
paperunstash
|
||||
elif [[ "$2" = "api" ]] ; then
|
||||
cd "$basedir/Paper-API"
|
||||
export LAST_EDIT=$(pwd)
|
||||
paperstash
|
||||
git rebase -i upstream/upstream
|
||||
paperunstash
|
||||
;;
|
||||
"api")
|
||||
cd "$basedir/Paper-API"
|
||||
export LAST_EDIT=$(pwd)
|
||||
|
||||
paperstash
|
||||
git rebase -i upstream/upstream
|
||||
paperunstash
|
||||
elif [[ "$2" = "continue" ]] ; then
|
||||
cd "$LAST_EDIT"
|
||||
git add .
|
||||
git rebase --continue
|
||||
unset LAST_EDIT
|
||||
scripts/rebuildPatches.sh "$basedir"
|
||||
else
|
||||
echo "You must edit either the api or server."
|
||||
fi
|
||||
paperstash
|
||||
git rebase -i upstream/upstream
|
||||
paperunstash
|
||||
;;
|
||||
"continue")
|
||||
cd "$LAST_EDIT"
|
||||
git add .
|
||||
git rebase --continue
|
||||
unset LAST_EDIT
|
||||
(
|
||||
cd "$basedir"
|
||||
scripts/rebuildPatches.sh "$basedir"
|
||||
)
|
||||
;;
|
||||
*)
|
||||
echo "You must edit either the api or server."
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
"setup")
|
||||
if [[ -f ~/.bashrc ]] ; then
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
echo "Rebuilding Forked projects.... "
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
|
||||
(git submodule update --init && ./scripts/remap.sh "$basedir" && ./scripts/decompile.sh "$basedir" && ./scripts/init.sh "$basedir" && ./scripts/applyPatches.sh "$basedir") || (
|
||||
echo "Failed to build Paper"
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
||||
decompiledir="$workdir/$minecraftversion"
|
||||
|
@ -3,7 +3,7 @@
|
||||
nms="net/minecraft/server"
|
||||
export MODLOG=""
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
|
||||
workdir="$basedir/work"
|
||||
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
||||
decompiledir="$workdir/$minecraftversion"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
PS1="$"
|
||||
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
minecraftversion=$(cat "$basedir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
||||
decompiledir="$workdir/$minecraftversion"
|
||||
|
@ -1,17 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
mcver=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
||||
paperjar="../../Paper-Server/target/paper-$mcver.jar"
|
||||
vanillajar="../$mcver/$mcver.jar"
|
||||
|
||||
cd "$workdir/Paperclip"
|
||||
mvn clean package "-Dmcver=$mcver" "-Dpaperjar=$paperjar" "-Dvanillajar=$vanillajar" || exit 1
|
||||
cd ..
|
||||
(
|
||||
cd "$workdir/Paperclip"
|
||||
mvn clean package "-Dmcver=$mcver" "-Dpaperjar=$paperjar" "-Dvanillajar=$vanillajar" || exit 1
|
||||
)
|
||||
cp "$workdir/Paperclip/target/paperclip-${mcver}.jar" "$basedir/paperclip.jar"
|
||||
|
||||
echo ""
|
||||
echo ""
|
||||
echo ""
|
||||
echo "Build success!"
|
||||
echo "Copied final jar to $basedir/paperclip.jar"
|
||||
echo "Copied final jar to "$(realpath "$basedir/paperclip.jar")
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
echo "Rebuilding patch files from current fork state..."
|
||||
git config core.safecrlf false
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
minecraftversion=$(cat ${workdir}/BuildData/info.json | grep minecraftVersion | cut -d '"' -f 4)
|
||||
minecrafthash=$(cat ${workdir}/BuildData/info.json | grep minecraftHash | cut -d '"' -f 4)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
basedir=$(realpath "$1")
|
||||
workdir="$basedir/work"
|
||||
|
||||
function update {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren