aboutsummaryrefslogtreecommitdiff
path: root/home/list.sh
diff options
context:
space:
mode:
Diffstat (limited to 'home/list.sh')
-rwxr-xr-xhome/list.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/home/list.sh b/home/list.sh
index b3b8bd9..592a4a3 100755
--- a/home/list.sh
+++ b/home/list.sh
@@ -1,10 +1,9 @@
#!/bin/sh
#shellcheck disable=SC2038
-find . -type f -name HEAD \
+find * -type f -name HEAD \
| xargs -n1 dirname \
| while read -r repo ; do
if ! [ "$(basename "$repo")" = ".git" ] ; then
echo "$repo";
fi
done
-