diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:17:53 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:17:53 +0100 |
commit | a115679c57dd4cef3f98d1b753af082742569054 (patch) | |
tree | 6b5ee9a69e9f5e272caf443dc405826368b26536 /include | |
parent | 0776eb414c82cff51a25fdbcbaed8368cfa05a9f (diff) |
get.sh: sort patches when applying
this was an oversight in my recent patch unrolling
the condensed code lines, to remove eval statements.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/get.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/get.sh b/include/get.sh index dabbcf0c..b373fda3 100644 --- a/include/get.sh +++ b/include/get.sh @@ -336,7 +336,7 @@ tmpclone() tmpclone_patchlist="`mktemp || err "Can't create tmp patch list"`" || \ err "Can't create tmp patch list" "tmpclone" "$@" - x_ find "$4" -type f > "$tmpclone_patchlist" || \ + x_ find "$4" -type f | sort > "$tmpclone_patchlist" || \ err "Can't write patch names to '$tmpclone_patchlist'" \ "tmpclone" "$@" |