mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-16 03:25:25 +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
|
rval=1
|
||||||
if [ ! -d "${1}" ]; then
|
if [ ! -d "${1}" ]; then
|
||||||
printf "items: directory '%s' doesn't exist" "${1}"
|
printf "items: directory '%s' doesn't exist" "${1}" 1>&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
for x in "${1}/"*; do
|
for x in "${1}/"*; do
|
||||||
|
|||||||
Reference in New Issue
Block a user