From a115679c57dd4cef3f98d1b753af082742569054 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 4 Oct 2025 08:17:53 +0100 Subject: 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 --- include/get.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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" "$@" -- cgit v1.2.1