From d933d6bebcd54dfcd3c6611ed2a350b238ef1566 Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 13 Apr 2026 23:33:22 -0400 Subject: [PATCH] Add gpg signing debugging --- installJRMC | 1 + 1 file changed, 1 insertion(+) diff --git a/installJRMC b/installJRMC index 2d8538d..8f5337f 100755 --- a/installJRMC +++ b/installJRMC @@ -1221,6 +1221,7 @@ run_createrepo() { repomd_asc_tmp=$(mktemp) || { err "Failed to create temp file for signature"; return 1; } gpg_cmd=(gpg --batch --yes --armor --detach-sign --output "$repomd_asc_tmp") + ((DEBUG)) && gpg_cmd+=(--verbose) [[ -n $SIGN_KEY ]] && gpg_cmd+=(--local-user "$SIGN_KEY") gpg_cmd+=("$repomd_xml")