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.
This commit is contained in:
parent
b6301b6bd2
commit
dc02848b2e
1 changed files with 1 additions and 1 deletions
|
@ -1559,7 +1559,7 @@ def update_pkg_list(
|
||||||
|
|
||||||
log_print("Adding built pkgs to repo...", other_state=other_state)
|
log_print("Adding built pkgs to repo...", other_state=other_state)
|
||||||
try:
|
try:
|
||||||
command_list = ["repo-add", other_state["repo"]]
|
command_list = ["repo-add", "--include-sigs", other_state["repo"]]
|
||||||
for gpkg in pkg_list:
|
for gpkg in pkg_list:
|
||||||
command_list.append(gpkg)
|
command_list.append(gpkg)
|
||||||
p1 = subprocess.Popen(
|
p1 = subprocess.Popen(
|
||||||
|
|
Loading…
Reference in a new issue