From 7750f83d763ab9f9334ca58cf7e14940ea751d8b Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 31 Mar 2017 10:52:14 -0700 Subject: [PATCH] tools: set -u breaks travis --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 26351863b..d18a6e76f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,8 +73,11 @@ branches: install: # command output is hidden as they complete - # if any command fails, end the travis script; warn about nulls - - set -eu + # if any command fails, end the travis script + - set -e + + # warn about nulls ? no, breaks travis + #- set -u # stack - mkdir -p ~/.local/bin