diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-14 13:19:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-14 13:19:25 +0100 |
commit | 98724d701b10a037e8ffa7ce2864a08993268517 (patch) | |
tree | c354f485c3da5681798dad51b6d760358061a029 /include/vendor.sh | |
parent | baea03c67270a8e213f825d833e0c0b1959d34d0 (diff) |
lib.sh: remove the items() function
it's pretty much just doing the same thing as ls -1
remove it!
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/vendor.sh')
-rwxr-xr-x | include/vendor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh index b2fc5346..b5fda8f3 100755 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -241,7 +241,7 @@ vendor_inject() set +u +e [ $# -lt 1 ] && $err "No options specified." - [ "$1" = "listboards" ] && eval "items config/coreboot || :; exit 0" + [ "$1" = "listboards" ] && eval "ls -1 config/coreboot || :; exit 0" archive="$1" |