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

@ -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)