Use absolute paths for pointing Paperclip to files

This commit is contained in:
DemonWav 2017-09-23 13:30:55 -05:00
parent 4fb6555d6e
commit 1eadde1ee5
No known key found for this signature in database
GPG Key ID: B6F23B7ED67DAE90
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ set -e
basedir="$(cd "$1" && pwd -P)"
workdir="$basedir/work"
mcver=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
paperjar="../../Paper-Server/target/paper-$mcver.jar"
vanillajar="../Minecraft/$mcver/$mcver.jar"
paperjar="$basedir/Paper-Server/target/paper-$mcver.jar"
vanillajar="$workdir/Minecraft/$mcver/$mcver.jar"
(
cd "$workdir/Paperclip"