Skip to content

Commit

Permalink
msys2-dbadd: only msys still includes signatures now
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Nov 5, 2023
1 parent c5689b8 commit cd2594e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions msys2-dbadd
Original file line number Diff line number Diff line change
Expand Up @@ -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") )
Expand Down

0 comments on commit cd2594e

Please sign in to comment.