diff options
author | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
commit | ab3ad8fca4ec645854a54a50de4ee21c8fd72978 (patch) | |
tree | d8910a95004c59c11a7f557379b0eb35284ea5ac /aux/workflow/sign-tarballs.sh | |
parent | servers/nixvps/configuration.nix: Use subfolders of the same domain over subd... (diff) | |
download | toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.gz toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.xz |
aux/: Update files
Diffstat (limited to 'aux/workflow/sign-tarballs.sh')
-rwxr-xr-x | aux/workflow/sign-tarballs.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/aux/workflow/sign-tarballs.sh b/aux/workflow/sign-tarballs.sh index b88ff33..8de6ac4 100755 --- a/aux/workflow/sign-tarballs.sh +++ b/aux/workflow/sign-tarballs.sh @@ -5,13 +5,13 @@ PROJECT="$1" SIGNATURES="$(git notes --ref=refs/notes/signatures/tar.gz list | cut -d\ -f2)" for tag in $(git tag); do - COMMIT="$(git rev-list -n1 "$tag")" - if ! echo "$SIGNATURES" | grep -qF "$COMMIT"; then - echo "Adding missing signature to $tag" >&2 - git notes --ref=refs/notes/signatures/tar.gz add -f -C "$( - git archive --format tar.gz --prefix "$PROJECT-${tag#v}/" "$tag" | - gpg --output - --armor --detach-sign | - git hash-object -w --stdin - )" "$tag" - fi + COMMIT="$(git rev-list -n1 "$tag")" + if ! echo "$SIGNATURES" | grep -qF "$COMMIT"; then + echo "Adding missing signature to $tag" >&2 + git notes --ref=refs/notes/signatures/tar.gz add -f -C "$( + git archive --format tar.gz --prefix "$PROJECT-${tag#v}/" "$tag" | + gpg --output - --armor --detach-sign | + git hash-object -w --stdin + )" "$tag" + fi done |