From: Hugo Villeneuve Date: Tue, 17 Dec 2019 17:00:26 +0000 (-0500) Subject: Fix bug with non-existent directory X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=788d9df6ef70a92e2569e0c659a52a639700af62;hp=fc645bad214eddef31e48d04ec950887e5091b08;p=hvutilities.git Fix bug with non-existent directory --- diff --git a/scripts/git-project-update.sh b/scripts/git-project-update.sh index f1862ee..b47dcbc 100755 --- a/scripts/git-project-update.sh +++ b/scripts/git-project-update.sh @@ -80,8 +80,8 @@ while IFS=$'\n' read r ; do # Make sure directory exists if [ ! -d "${r}" ]; then - echo "Missing repos ${r}" - exit 1 + echo "Skipping missing repos ${r}" + continue fi # Update only git repos