From 64d87e1d867dcd10ec0f0f26d4a66d2d5d60f41c Mon Sep 17 00:00:00 2001 From: Hippolyte Chauvin Date: Fri, 16 Jun 2023 11:23:01 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20:=20afficher=20le=20nom=20des=20d=C3=A9?= =?UTF-8?q?p=C3=B4ts=20pendant=20les=20mises=20=C3=A0=20jour=20de=20Git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- share/updateall/commands.d/git | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/updateall/commands.d/git b/share/updateall/commands.d/git index 4a2fd82..a306d25 100755 --- a/share/updateall/commands.d/git +++ b/share/updateall/commands.d/git @@ -1,7 +1,8 @@ #!/bin/sh if cd "${1:-${HOME}/Git}"; then for repo in *; do - cd "$repo" + cd "$repo" || continue + printf '\n%s\n' "$repo" git pull cd .. done