From 4c75c60b4c6e19379002a557b2b924e506f0bd72 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 22 Jun 2018 12:49:56 -0400 Subject: config: Be friendly with `set -e` programs --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index 712b1f0..3cbc176 100644 --- a/config +++ b/config @@ -43,4 +43,4 @@ FROM="repomaint@archlinux.org" # Override default config with config.local LOCAL_CONFIG=${DBSCRIPTS_CONFIG:-"$(dirname ${BASH_SOURCE[0]})/config.local"} -[[ -f "${LOCAL_CONFIG}" ]] && . "${LOCAL_CONFIG}" +if [[ -f "${LOCAL_CONFIG}" ]]; then . "${LOCAL_CONFIG}"; fi -- cgit v1.2.2