Merge pull request #661 from orbea/enabled
libretro-buildbot-recipe.sh: Handle disabled cores with fewer nested tests.
This commit is contained in:
commit
c56918fb36
|
@ -579,7 +579,8 @@ while read line; do
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${ENABLED}" = "YES" ]; then
|
[ "${ENABLED}" != "YES" ] && { echo "${NAME} is disabled, skipping"; continue; }
|
||||||
|
|
||||||
echo -ne "buildbot job started at: "
|
echo -ne "buildbot job started at: "
|
||||||
date
|
date
|
||||||
echo
|
echo
|
||||||
|
@ -669,7 +670,6 @@ while read line; do
|
||||||
echo
|
echo
|
||||||
echo -ne "buildbot job finished at: "
|
echo -ne "buildbot job finished at: "
|
||||||
date
|
date
|
||||||
fi
|
|
||||||
|
|
||||||
cd "${BASE_DIR}"
|
cd "${BASE_DIR}"
|
||||||
PREVCORE=$NAME
|
PREVCORE=$NAME
|
||||||
|
|
Loading…
Reference in New Issue