From 60af4e8de02aed6d0969c1c533771a062bc08f90 Mon Sep 17 00:00:00 2001 From: USER Date: Mon, 25 Sep 2023 21:39:36 +0100 Subject: [PATCH] . --- sbin/GitPull | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/GitPull b/sbin/GitPull index e29156b..07ca577 100755 --- a/sbin/GitPull +++ b/sbin/GitPull @@ -7,10 +7,10 @@ MYNAME=`uname -n` pull_repo () { for i in `ls -d ${ZZ}` do - echo $i + echo "checking $i" if [ -d $i/.git ] then - echo $i + echo "pulling $i" (cd $i; git pull; git checkout main; git pull ) fi done