libretro-buildbot-recipe.sh: return 0 if $RECIPE.ra does not exist.

Silences the following error.

./libretro-buildbot-recipe.sh: line 918: recipes/linux/cores-linux-x64-generic.ra: No such file or directory
This commit is contained in:
orbea 2017-11-13 09:19:02 -08:00
parent 4725be8599
commit f8e5eba8eb

View file

@ -916,6 +916,8 @@ while read line; do
done < $1
buildbot_pull(){
[ ! -f "$RECIPE.ra" ] && return 0
while read line; do
NAME=`echo $line | cut -f 1 -d " "`
DIR=`echo $line | cut -f 2 -d " "`