From f3e71b5dd538a4b0768e42946d3b6be3f1c0426a Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Wed, 3 Jan 2018 05:33:43 +0100 Subject: [PATCH] add `set -eu` to update.sh fixes #2957 --- scripts/update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/update.sh b/scripts/update.sh index e6ed58b7..d0598135 100644 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -2,6 +2,9 @@ # You can execute this file to update wallabag # eg: `sh update.sh prod` +set -e +set -u + COMPOSER_COMMAND='composer' DIR="${BASH_SOURCE}" -- 2.41.0