From 84356869083bc196bffaef08305bb76756344155 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Fri, 4 Sep 2020 21:29:12 +0200 Subject: fix mirror --- mirror_update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mirror_update.sh') diff --git a/mirror_update.sh b/mirror_update.sh index d48125a..3e082da 100755 --- a/mirror_update.sh +++ b/mirror_update.sh @@ -6,7 +6,7 @@ ROOTDIR=$(realpath "$1") -for dir in $(ls -d "$ROOTDIR/*.git/"); do +for dir in $ROOTDIR/*; do echo $dir - git -C "$dir" fetch --mirror + git -C "$dir" fetch --all done -- cgit v1.2.3