summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-08 01:22:21 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-08 01:22:21 +0100
commit08d0a1d5d824b69cc6bf45596fe921d52ff179c5 (patch)
tree2428c362c787bfc097b426fc4b57c20a34cb7f91 /include
parent9b00b30a4f6e6d46b5265b22b31af889bdc39353 (diff)
lib.sh: shorten a string in e()
line exceeds 80 characters Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-xinclude/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 39d3bc99..dac8e507 100755
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -210,7 +210,7 @@ e()
[ $# -gt 1 ] && es_t="$2"
es2="already exists"
estr="[ -$es_t \"\$1\" ] || return 1"
- [ $# -gt 2 ] && estr="[ -$es_t \"\$1\" ] && return 1" && es2="not found"
+ [ $# -gt 2 ] && estr="[ -$es_t \"\$1\" ] && return 1" && es2="missing"
eval "$estr"
printf "%s %s\n" "$1" "$es2" 1>&2