mirror of
https://github.com/libretro/libretro-super
synced 2025-03-29 10:20:19 +00:00
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:
parent
4725be8599
commit
f8e5eba8eb
@ -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 " "`
|
||||
|
Loading…
x
Reference in New Issue
Block a user