Workaround for OSX not having the realpath command.

This commit is contained in:
DemonWav 2016-04-03 03:35:51 -05:00
parent 0394633734
commit 4108dc5b68
10 changed files with 11 additions and 11 deletions

View File

@ -3,7 +3,7 @@
(
set -e
PS1="$"
basedir=$(realpath "$1")
basedir="$(cd "$1" && pwd -P)"
workdir="$basedir/work"
echo "Rebuilding Forked projects.... "

View File

@ -2,7 +2,7 @@
(
set -e
basedir=$(realpath "$1")
basedir="$(cd "$1" && pwd -P)"
(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"

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
(
set -e
basedir=$(realpath "$1")
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"
@ -18,5 +18,5 @@ echo ""
echo ""
echo ""
echo "Build success!"
echo "Copied final jar to "$(realpath "$basedir/paperclip.jar")
echo "Copied final jar to $(cd "$basedir" && pwd -P)/paperclip.jar"
)

View File

@ -3,7 +3,7 @@
(
set -e
PS1="$"
basedir=$(realpath "$1")
basedir="$(cd "$1" && pwd -P)"
workdir="$basedir/work"
echo "Rebuilding patch files from current fork state..."
git config core.safecrlf false

View File

@ -3,7 +3,7 @@
(
set -e
PS1="$"
basedir=$(realpath "$1")
basedir="$(cd "$1" && pwd -P)"
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)

View File

@ -3,7 +3,7 @@
(
set -e
PS1="$"
basedir=$(realpath "$1")
basedir="$(cd "$1" && pwd -P)"
workdir="$basedir/work"
function update {