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 /build | |
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 'build')
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -119,7 +119,7 @@ build_release() fetch_trees() { - for x in $(items config/git); do + for x in $(ls -1 config/git); do ./update trees -f "$x" || $err "$_xm: fetch $x" singletree "$x" || x_ rm -Rf "src/$x/$x" done |