From cd2594e7194629022a7afc65007ee38876a68a0a Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 5 Nov 2023 19:02:24 +0100 Subject: [PATCH] msys2-dbadd: only msys still includes signatures now --- msys2-dbadd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/msys2-dbadd b/msys2-dbadd index 1c07ea9..eceac42 100755 --- a/msys2-dbadd +++ b/msys2-dbadd @@ -42,11 +42,11 @@ update_packages() { local srcpath="${1}" shift - # Skip embedded signatures for clang32 and clangarm64 - # https://github.com/msys2/msys2-devtools/issues/5#issuecomment-1788722206 - local repo_options=(--include-sigs) - if [ "${repo}" = "clang32" ] || [ "${repo}" = "clangarm64" ] || [ "${repo}" = "clang64" ] || [ "${repo}" = "ucrt64" ]; then - repo_options=() + # Skip embedded signatures for everything but msys + # https://github.com/msys2/msys2-devtools/issues/5 + local repo_options=() + if [ "${repo}" = "msys" ]; then + repo_options=(--include-sigs) fi local files=( $(find "${staging}/${path}" -name "*.pkg.tar.*" -not -name "*.sig") )