libretro-buildbot-recipe.sh: Don't export empty variables.

Silences the following error if the read file contains a blank line.

./libretro-buildbot-recipe.sh: line 31: export: `=': not a valid identifier
This commit is contained in:
orbea 2017-11-13 07:59:24 -08:00
parent 7ce8a5d982
commit aa31fb2771
2 changed files with 1 additions and 1 deletions

View file

@ -21,6 +21,7 @@ ENTRY_ID=""
# ----- read variables from recipe config -----
while read line; do
[ -z "${line}" ] && continue
KEY=`echo $line | cut -f 1 -d " "`
VALUE=`echo $line | cut -f 2 -d " "`
rm -f -- "$TMPDIR/vars"

View file

@ -5,4 +5,3 @@ CORE_JOB YES
MAKE make
CMAKE cmake
PATH /usr/lib/ccache