From 51499ec4fac3fbb4ffd51b8af774ba39851bc84e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 16 Dec 2015 18:27:04 +0000 Subject: [PATCH] Directories: do not process dotfiles/dot itself (!) --- infra/makelinks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/makelinks b/infra/makelinks index ac907f7..55de7a6 100755 --- a/infra/makelinks +++ b/infra/makelinks @@ -33,7 +33,7 @@ esac mode=$1; shift -dots=$( find dot -maxdepth 1 -name '[0-9a-zA-Z]*[0-9a-zA-Z]' ) +dots=$( find dot -mindepth 1 -maxdepth 1 -name '[0-9a-zA-Z]*[0-9a-zA-Z]' ) basepath=$(pwd) basepath=${basepath#$HOME/} -- 2.30.2