commit e7986949c7d510b324f495304e6ec8f0ea01c638 parent faeeee7afe5d5df7f412dcb03e93d7781c2e554c Author: Byron Torres <b@torresjrjr.com> Date: Mon, 5 Dec 2022 03:59:14 +0000 gfa: use find depth of 3 Diffstat:
M | bin/gfa | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/gfa b/bin/gfa @@ -41,7 +41,7 @@ worker() { cwd=$( pwd ) -repos=$( find -path '*/.git' -not -path '*/_*' | sort ) +repos=$( find -maxdepth 3 -path '*/.git' -not -path '*/_*' | sort ) [ "$repos" ] || printf >&2 'No git repos here\n'