1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-25 04:30:46 +00:00

Merge branch 'dritter-symlink_resolving_improvement' into next

This commit is contained in:
Ben Hilburn 2016-01-14 13:13:44 -08:00
commit 94419f54a5

View file

@ -51,7 +51,7 @@ fi
# If this theme is sourced as a symlink, we need to locate the true URL # If this theme is sourced as a symlink, we need to locate the true URL
if [[ -L $0 ]]; then if [[ -L $0 ]]; then
# Script is a symlink # Script is a symlink
filename="$(realpath -P $0 2>/dev/null || readlink -f $0 2>/dev/null)" filename="$(realpath -P $0 2>/dev/null || readlink -f $0 2>/dev/null || perl -MCwd=abs_path -le 'print abs_path readlink(shift);' $0 2>/dev/null)"
elif [[ -f $0 ]]; then elif [[ -f $0 ]]; then
# Script is a file # Script is a file
filename="$0" filename="$0"