summaryrefslogtreecommitdiff
path: root/include/lib.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-03 06:36:43 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-03 06:36:43 +0100
commit7fadb17fd9ed7e916f62849132d73648ea9a099d (patch)
treefb5f4dae00bafa9a4769c20a03a51913436a7644 /include/lib.sh
parent0b09d970732cb396f1868c41ee9842b4a96f0c36 (diff)
lib.sh: Fix bad touch command
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r--include/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 8bad16ce..3c603bae 100644
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -141,7 +141,7 @@ fx_()
find_ex()
{
errx="$1" && shift 1
- fd="`mktemp`" && x_ rm -f "$fd" && x_ touch rm -f "$fd"
+ fd="`mktemp`" && x_ rm -f "$fd" && x_ touch "$fd"
xx="$1" && shift 1
$errx find "$@" | sort > "$fd" || $err "!find $(echo "$@") > \"$fd\""
while read -r fx; do