From 98724d701b10a037e8ffa7ce2864a08993268517 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 14 Jun 2024 13:19:25 +0100 Subject: 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 --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build b/build index 19ed8875..834fd50b 100755 --- a/build +++ b/build @@ -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 -- cgit v1.2.1