stop urchin_root at hidden directories
This commit is contained in:
parent
3e90e83237
commit
c6e1016b80
6
urchin
6
urchin
@ -50,8 +50,10 @@ urchin_root() {
|
||||
orig="$1"
|
||||
fi
|
||||
|
||||
if test "$(readlink -f -- "$1")" = /; then
|
||||
# Stop traversing upwards at /
|
||||
abscurrent="$(fullpath "$1")"
|
||||
if test "$abscurrent" = / ||
|
||||
basename "$abscurrent" | grep '^\.' > /dev/null; then
|
||||
# Stop traversing upwards at / and at hidden directories.
|
||||
if test -d "$orig"; then
|
||||
echo "$orig"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user