diff options
-rwxr-xr-x | bosun | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ list_active() { # XXX: GNU extensions: -print0 for find, -r -0 for xargs # XXX: GNU only: realpath - find -type l -print0 2>/dev/null \ + find . -type l -print0 2>/dev/null \ | xargs -r0 realpath -e --relative-base "$real" 2>/dev/null \ | sed '/^\//d' | cut -d/ -f1 | sort -u } |