diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-28 13:40:50 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-28 13:40:50 +0100 |
commit | e3546f77b89faf3862de0b2ba5e0570933dad50d (patch) | |
tree | 9d4ee9ffa6b0ee0c03a3c1451a53d0d3fa484c13 /include | |
parent | d0f68a0fbf7685cbc471b64633adb060944549ff (diff) |
lib.sh: add a return to the end of chkvars()
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-x | include/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index 84107420..627e7ce1 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -34,7 +34,7 @@ chkvars() { for var in $@; do eval "[ -n "\${$var+x}" ] || \$err \"$var unset\"" - done + done; return 0 } eval `setvars "" _nogit board relname versiondate projectsite \ |