From 224cc5ab9e3d52a8753d3a23ca2b45988a0785c4 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 22 Jun 2014 16:17:28 +0200 Subject: [PATCH] archive.sh,setup.sh: use set -u --- archive.sh | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/archive.sh b/archive.sh index 5f8a0d2..26a0e8d 100755 --- a/archive.sh +++ b/archive.sh @@ -21,7 +21,7 @@ # along with this program. If not, see . -set -e +set -eu git_clone() { git clone "$1" "$2" >/dev/null diff --git a/setup.sh b/setup.sh index 2190af1..ce47802 100755 --- a/setup.sh +++ b/setup.sh @@ -19,7 +19,7 @@ # along with this program. If not, see . -set -e +set -eu for path in */setup.sh; do # Skip non executable setup.sh files as an easy way to deactivate one. -- 2.43.2