From dc02848b2ea1d667ecfcd7b5de00530d42dc7f5b Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Thu, 16 May 2024 15:37:07 +0900 Subject: [PATCH] Append "--include-sigs" to "repo-add" command The default seems to have changed to not include the signatures. This flag re-enables adding package signatures to the package database. --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.py b/update.py index 36702b8..87b2691 100755 --- a/update.py +++ b/update.py @@ -1559,7 +1559,7 @@ def update_pkg_list( log_print("Adding built pkgs to repo...", other_state=other_state) try: - command_list = ["repo-add", other_state["repo"]] + command_list = ["repo-add", "--include-sigs", other_state["repo"]] for gpkg in pkg_list: command_list.append(gpkg) p1 = subprocess.Popen(