diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-27 17:40:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 17:40:15 +0200 |
commit | d7052d248c60672769b0cfec8e1ad7fa75d4b1ad (patch) | |
tree | 06e8fb0c951f9c14ddcc0541c6ee0250ed17e670 | |
parent | 1b9ece832af030e45551b696b35a2ca628787efd (diff) | |
parent | 0bbb8d22c42c536931e0467699221d03ad9827b7 (diff) |
Merge pull request #31714 from akien-mga/travis-fix-return-value
Travis: Fix builds wrongly reporting success after #31013
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 305544d821..a763fa5376 100644 --- a/.travis.yml +++ b/.travis.yml @@ -135,8 +135,7 @@ script: - if [ "$STATIC_CHECKS" = "yes" ]; then sh ./misc/travis/clang-format.sh; else - scons -j2 CC=$CC CXX=$CXX platform=$PLATFORM tools=$TOOLS target=$TARGET $OPTIONS $EXTRA_ARGS; - + scons -j2 CC=$CC CXX=$CXX platform=$PLATFORM tools=$TOOLS target=$TARGET $OPTIONS $EXTRA_ARGS && if [ "$TEST_PROJECT" = "yes" ]; then git clone --depth 1 "https://github.com/godotengine/godot-tests.git"; sed -i "s:custom_template/release=\"\":custom_template/release=\"$(readlink -e bin/godot_server.x11.opt.tools.64)\":" godot-tests/tests/project_export/export_presets.cfg; |