From 91c373d218b8d560de41e026ac3d80edc5692f1d Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 2 Jun 2015 09:42:28 -0700 Subject: [PATCH] MOAR PIPEFAIL --- .template-helpers/variant.sh | 2 +- hello-world/update.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.template-helpers/variant.sh b/.template-helpers/variant.sh index 88ebbcce..9999e89f 100755 --- a/.template-helpers/variant.sh +++ b/.template-helpers/variant.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -eo pipefail repo="$1" if [ -z "$repo" ]; then diff --git a/hello-world/update.sh b/hello-world/update.sh index 98755f97..166eb33e 100755 --- a/hello-world/update.sh +++ b/hello-world/update.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -eo pipefail docker pull hello-world &> /dev/null