Merge pull request #661 from orbea/enabled

libretro-buildbot-recipe.sh: Handle disabled cores with fewer nested tests.
This commit is contained in:
Twinaphex 2017-12-24 21:52:24 +01:00 committed by GitHub
commit c56918fb36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -579,7 +579,8 @@ while read line; do
continue
fi
if [ "${ENABLED}" = "YES" ]; then
[ "${ENABLED}" != "YES" ] && { echo "${NAME} is disabled, skipping"; continue; }
echo -ne "buildbot job started at: "
date
echo
@ -669,7 +670,6 @@ while read line; do
echo
echo -ne "buildbot job finished at: "
date
fi
cd "${BASE_DIR}"
PREVCORE=$NAME