From 35e120fdcbfe8f04858220cad7b2c5814c0d16c1 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Mon, 13 Nov 2023 23:09:31 +0100 Subject: [PATCH] firmware-legacy-merger: fix typo in manifest merge --- github-downloader/firmware-legacy-merger | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-downloader/firmware-legacy-merger b/github-downloader/firmware-legacy-merger index b1869c6..37e9398 100755 --- a/github-downloader/firmware-legacy-merger +++ b/github-downloader/firmware-legacy-merger @@ -41,7 +41,7 @@ function merge_manifests() { extract_models "${legacy_dir}/sysupgrade/$branch" >> "${tempdir}/$branch.models" # merge both files, ignoring all but the first entry ("-u") for a specific model ("-k1,1") - sort -u -k1,1 "${tempdir}/$branch.models" > "${tempdir}/$branch" + sort -u -k1,1 "${tempdir}/$branch.models" >> "${tempdir}/$branch" echo "Merged $branch". done