From 261aaa8cf687be76e67fe5423f59450365769889 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Thu, 15 Feb 2018 23:53:36 -0500 Subject: Prevent gen-setup.sh from picking up on the current directory being a git repo... might break your configuration if you don't have a .git folder in the directory gen-setup.sh is being run in. beware --- gen-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gen-setup.sh') diff --git a/gen-setup.sh b/gen-setup.sh index 878a603..e8d9cdf 100755 --- a/gen-setup.sh +++ b/gen-setup.sh @@ -18,7 +18,7 @@ columate() { printf "%s" $_tabs } -REPOS="$(find . -iname .git -type d | sed -e's/\/\.git$//' -e's_./__')" +REPOS="$(find . -iname .git -type d | tail -n+2 | sed -e's/\/\.git$//' -e's_./__')" WD="$(pwd)" -- cgit v1.2.3