mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
option.sh: print error on stderr, not stdout
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user