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