1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Added target independence check to travis 'test' target.

This commit is contained in:
mikeller 2018-05-16 23:28:11 +12:00
parent e405e41d0c
commit 09ea369b44

View file

@ -66,6 +66,10 @@ elif [ $TARGET ] ; then
fi
elif [ $GOAL ] ; then
if [ "test" == "$GOAL" ] ; then
$MAKE check-target-independence || exit $?
fi
$MAKE $GOAL || exit $?
if [ $PUBLISHCOV ] ; then