From 06aeba9d7664e5aa4e4030762f8ab6261532bfc0 Mon Sep 17 00:00:00 2001 From: uwap Date: Fri, 2 Feb 2018 09:27:23 +0100 Subject: [PATCH] Use /bin/sh -e --- travis.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/travis.sh b/travis.sh index b8bfe9d..3831408 100755 --- a/travis.sh +++ b/travis.sh @@ -1,7 +1,9 @@ -#!/bin/sh -yarn lint && for conf in $(ls config/); do +#!/bin/sh -e +yarn lint +for conf in $(ls config/); do if [ $conf == "utils.js" ]; then continue fi - yarn build $conf && yarn production-build $conf -done || exit 1 + yarn build $conf + yarn production-build $conf +done