travis: fix scons build after deprecation warning

Fixes: 54053bc8d0 ("scons: Print a deprecation warning about using scons on not windows")
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
Eric Engestrom 2019-10-29 09:24:36 +00:00
parent e2155158e9
commit 690d359b6f
1 changed files with 2 additions and 2 deletions

View File

@ -58,6 +58,6 @@ script:
ninja -C _build install || travis_terminate 1;
fi
- if test "x$BUILD" = xscons; then
scons || travis_terminate 1;
scons check || travis_terminate 1;
scons force_scons=1 || travis_terminate 1;
scons force_scons=1 check || travis_terminate 1;
fi