From da5515baf1b84303e1e06f9ebf64e92b58da5fc7 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 6 Aug 2016 19:36:19 +0200 Subject: [PATCH] Fix some shellcheck(1) warnings in ax-common example code --- lib/ax/README | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/ax/README b/lib/ax/README index c55c01b..80e9de0 100644 --- a/lib/ax/README +++ b/lib/ax/README @@ -1,5 +1,5 @@ ax-unix: Alex' UNIX Tools & Scripts -Copyright (c)2013-2015 Alexander Barton (alex@barton.de) +Copyright (c)2013-2016 Alexander Barton (alex@barton.de) This directory contains library files to use in 3rd party applications and scripts. Please see below for usage information. @@ -17,10 +17,12 @@ Use something like the following in your scrips: ----> cut here <--------------------------------------------------------------- # Include "ax-common.sh": +ax_common_sourced= for dir in "$HOME/lib" "$HOME/.ax" /usr/local /opt/ax /usr; do [ -z "$ax_common_sourced" ] || break ax_common="${dir}/lib/ax/ax-common.sh" - [ -r "$ax_common" ] && source "$ax_common" + # shellcheck source=/usr/local/lib/ax/ax-common.sh + [ -r "$ax_common" ] && . "$ax_common" done if [ -z "$ax_common_sourced" ]; then echo "Error (`basename "$0"`): \"ax-common.sh\" not found, aborting!" -- 2.39.2