mirror of
https://github.com/mrworf/plexupdate.git
synced 2025-08-20 21:33:16 -07:00
Fix quoting in installer full path check
This commit is contained in:
parent
533b59d367
commit
3308d1add0
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue