From fc2adef09604138fce2c161a68f8e98860f47cdd Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sun, 17 Sep 2023 00:00:14 +0200 Subject: [PATCH] sort repositories --- gis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gis b/gis index 50b6bf1..0db7cf5 100755 --- a/gis +++ b/gis @@ -50,7 +50,7 @@ fi # Find Git repositories for path in "${paths[@]}"; do - git_dirs+="$(find "$path" -type d -name ".git" -exec dirname {} \;) " + git_dirs+="$(find "$path" -type d -name ".git" -exec dirname {} \; | sort) " done # Fetch Git repositories via background processes