libretro-buildbot-recipe.sh: Skip the recipe if it fails to cd to the cloned repo.

This commit is contained in:
orbea 2017-12-04 08:26:42 -08:00
parent 0f107ce404
commit 548bfd810e

View File

@ -748,7 +748,7 @@ while read line; do
UPDATE="NO"
fi
cd "$DIR"
cd "$DIR" || { echo "Failed to cd to ${DIR}, skipping ${NAME}"; continue; }
CURRENT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"