build_ci.sh: correct cron job check against 'linux'

We don't actually run this cronjob.
This commit is contained in:
Peter Barker 2020-09-07 10:32:40 +10:00 committed by Andrew Tridgell
parent f350bfba78
commit 3f2c06f8c0
1 changed files with 2 additions and 1 deletions

View File

@ -208,9 +208,10 @@ for t in $CI_BUILD_TARGET; do
$waf all
ccache -s && ccache -z
if [[ $t == linux ]]; then
if [[ $t == "linux" ]]; then
$waf check
fi
continue
fi
done