From 3b7009aafaf1fc81ac7e1256c82dfa8a306a5d4e Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 19 Dec 2023 02:32:56 +0000 Subject: option.sh: print error on stderr, not stdout Signed-off-by: Leah Rowe --- include/option.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/option.sh b/include/option.sh index b6e22ce8..976e604e 100755 --- a/include/option.sh +++ b/include/option.sh @@ -21,7 +21,7 @@ items() { rval=1 if [ ! -d "${1}" ]; then - printf "items: directory '%s' doesn't exist" "${1}" + printf "items: directory '%s' doesn't exist" "${1}" 1>&2 return 1 fi for x in "${1}/"*; do -- cgit v1.2.1