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