mirror of https://github.com/ArduPilot/ardupilot
build_ci.sh: correct cron job check against 'linux'
We don't actually run this cronjob.
This commit is contained in:
parent
f350bfba78
commit
3f2c06f8c0
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue