diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-03 06:36:43 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-03 06:36:43 +0100 |
commit | 7fadb17fd9ed7e916f62849132d73648ea9a099d (patch) | |
tree | fb5f4dae00bafa9a4769c20a03a51913436a7644 /include | |
parent | 0b09d970732cb396f1868c41ee9842b4a96f0c36 (diff) |
lib.sh: Fix bad touch command
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/lib.sh | 2 |
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 |