diff options
| author | Leah Rowe <leah@libreboot.org> | 2025-05-04 10:18:33 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2025-05-04 10:18:33 +0100 | 
| commit | 37ca0c90e1cc8dc3f85b9cdd96c9cd6faea0862a (patch) | |
| tree | 5b41bbfb894c0bbc527ef15960170c80a5797321 /include/lib.sh | |
| parent | 54291ebb7209c314bb52f507bc6a1ecf2a28fbc9 (diff) | |
lib.sh err: add missing redirect to stderr
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
| -rw-r--r-- | include/lib.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/lib.sh b/include/lib.sh index eb4cddca..1bfe2060 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -187,7 +187,7 @@ err()  	(  	$real_err "$@" || printf \  	    "WARNING: Err function '%s' *returned* 1. Will exit 1 anyway\n" \ -	    "$real_err" +	    "$real_err" 1>&2  	printf "WARNING: Err function '%s' didn't exit. Will exit 1 anyway\n" \  	    "$real_err" 1>&2  	exit 1 | 
