mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
lib.sh: Fix bad touch command
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -141,7 +141,7 @@ fx_()
|
|||||||
find_ex()
|
find_ex()
|
||||||
{
|
{
|
||||||
errx="$1" && shift 1
|
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
|
xx="$1" && shift 1
|
||||||
$errx find "$@" | sort > "$fd" || $err "!find $(echo "$@") > \"$fd\""
|
$errx find "$@" | sort > "$fd" || $err "!find $(echo "$@") > \"$fd\""
|
||||||
while read -r fx; do
|
while read -r fx; do
|
||||||
|
|||||||
Reference in New Issue
Block a user