From 9af206da1a2450804df0adca7aecd05901df6e5d Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 30 Oct 2017 14:08:13 +0100 Subject: [PATCH] Correct echo output --- scripts/e2e-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e-ci.sh b/scripts/e2e-ci.sh index f805c8e20..a7cbbc23a 100755 --- a/scripts/e2e-ci.sh +++ b/scripts/e2e-ci.sh @@ -15,10 +15,10 @@ if [[ "${CIRCLE_BRANCH}" == "master" ]]; then result=$? if [ "$result" -gt "0" ] then - echo "-- Success e2e for $1 --" + echo "-- Failed e2e for $1 --" exitCode=$result else - echo "-- Failed e2e for $1 --" + echo "-- Success e2e for $1 --" fi # Sleep a bit to let browserstack-local to close properly.