From 11805062ac988dcd9f53c58057223f6983a889b8 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 21 Apr 2020 10:19:35 -0700 Subject: [PATCH] Fix multi-line command --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ee84f11cc..bcf5fc525 100644 --- a/.travis.yml +++ b/.travis.yml @@ -191,10 +191,10 @@ script: # run qmake - mkdir ${SHADOW_BUILD_DIR} && cd ${SHADOW_BUILD_DIR} - if [ "${TRAVIS_TAG}" ]; then - echo "Stable build" + echo "Stable build" && export STABLE_OR_DAILY=StableBuild; else - echo "Daily build" + echo "Daily build" && export STABLE_OR_DAILY=DailyBuild; fi # Due to possible bug in Qt 5.11 WarningsAsErrorsOn is off for Linux builds. Hopefully back on once that is resolved. -- 2.22.0