Rebuild patches after we continue from a paper edit.

Dieser Commit ist enthalten in:
DemonWav 2016-04-02 18:34:27 -05:00
Ursprung 51af958804
Commit 7effde04b1
11 geänderte Dateien mit 44 neuen und 35 gelöschten Zeilen

18
paper
Datei anzeigen

@ -49,29 +49,37 @@ case "$1" in
cd "$basedir" cd "$basedir"
;; ;;
"e" | "edit") "e" | "edit")
if [[ "$2" = "server" ]] ; then case "$2" in
"server")
cd "$basedir/Paper-Server" cd "$basedir/Paper-Server"
export LAST_EDIT=$(pwd) export LAST_EDIT=$(pwd)
paperstash paperstash
git rebase -i upstream/upstream git rebase -i upstream/upstream
paperunstash paperunstash
elif [[ "$2" = "api" ]] ; then ;;
"api")
cd "$basedir/Paper-API" cd "$basedir/Paper-API"
export LAST_EDIT=$(pwd) export LAST_EDIT=$(pwd)
paperstash paperstash
git rebase -i upstream/upstream git rebase -i upstream/upstream
paperunstash paperunstash
elif [[ "$2" = "continue" ]] ; then ;;
"continue")
cd "$LAST_EDIT" cd "$LAST_EDIT"
git add . git add .
git rebase --continue git rebase --continue
unset LAST_EDIT unset LAST_EDIT
(
cd "$basedir"
scripts/rebuildPatches.sh "$basedir" scripts/rebuildPatches.sh "$basedir"
else )
;;
*)
echo "You must edit either the api or server." echo "You must edit either the api or server."
fi ;;
esac
;; ;;
"setup") "setup")
if [[ -f ~/.bashrc ]] ; then if [[ -f ~/.bashrc ]] ; then

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
echo "Rebuilding Forked projects.... " echo "Rebuilding Forked projects.... "

Datei anzeigen

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/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") || ( (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" echo "Failed to build Paper"

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4) minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
decompiledir="$workdir/$minecraftversion" decompiledir="$workdir/$minecraftversion"

Datei anzeigen

@ -3,7 +3,7 @@
nms="net/minecraft/server" nms="net/minecraft/server"
export MODLOG="" export MODLOG=""
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4) minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4) minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
decompiledir="$workdir/$minecraftversion" decompiledir="$workdir/$minecraftversion"

Datei anzeigen

@ -2,7 +2,7 @@
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
minecraftversion=$(cat "$basedir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4) minecraftversion=$(cat "$basedir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
decompiledir="$workdir/$minecraftversion" decompiledir="$workdir/$minecraftversion"

Datei anzeigen

@ -1,17 +1,18 @@
#!/usr/bin/env bash #!/usr/bin/env bash
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
mcver=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4) mcver=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
paperjar="../../Paper-Server/target/paper-$mcver.jar" paperjar="../../Paper-Server/target/paper-$mcver.jar"
vanillajar="../$mcver/$mcver.jar" vanillajar="../$mcver/$mcver.jar"
(
cd "$workdir/Paperclip" cd "$workdir/Paperclip"
mvn clean package "-Dmcver=$mcver" "-Dpaperjar=$paperjar" "-Dvanillajar=$vanillajar" || exit 1 mvn clean package "-Dmcver=$mcver" "-Dpaperjar=$paperjar" "-Dvanillajar=$vanillajar" || exit 1
cd .. )
cp "$workdir/Paperclip/target/paperclip-${mcver}.jar" "$basedir/paperclip.jar" cp "$workdir/Paperclip/target/paperclip-${mcver}.jar" "$basedir/paperclip.jar"
echo "" echo ""
echo "" echo ""
echo "" echo ""
echo "Build success!" echo "Build success!"
echo "Copied final jar to $basedir/paperclip.jar" echo "Copied final jar to "$(realpath "$basedir/paperclip.jar")

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
echo "Rebuilding patch files from current fork state..." echo "Rebuilding patch files from current fork state..."
git config core.safecrlf false git config core.safecrlf false

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
minecraftversion=$(cat ${workdir}/BuildData/info.json | grep minecraftVersion | cut -d '"' -f 4) minecraftversion=$(cat ${workdir}/BuildData/info.json | grep minecraftVersion | cut -d '"' -f 4)
minecrafthash=$(cat ${workdir}/BuildData/info.json | grep minecraftHash | cut -d '"' -f 4) minecrafthash=$(cat ${workdir}/BuildData/info.json | grep minecraftHash | cut -d '"' -f 4)

Datei anzeigen

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PS1="$" PS1="$"
basedir="$1" basedir=$(realpath "$1")
workdir="$basedir/work" workdir="$basedir/work"
function update { function update {