Fix quoting in installer full path check

This commit is contained in:
Alex Malinovich 2016-11-29 20:14:07 -08:00
commit 3308d1add0

View file

@ -323,8 +323,8 @@ if [ -f ~/.plexupdate ]; then
fi fi
fi fi
if [ -f "$(dirname $0)/../plexupdate.sh" -a -d "$(dirname $0)/../.git" ]; then if [ -f "$(dirname "$0")/../plexupdate.sh" -a -d "$(dirname "$0")/../.git" ]; then
FULL_PATH=$(readlink -f $(dirname $0)/../) FULL_PATH=$(readlink -f $(dirname "$0")/../)
echo echo
echo "Found plexupdate.sh in '$FULL_PATH', using that as your install path" echo "Found plexupdate.sh in '$FULL_PATH', using that as your install path"
else else