From 457533034d1e0070323f9ca49a4bf8ddde5f882e Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Mon, 14 Jan 2019 10:34:54 +0100 Subject: initial import --- scripts/verify-tag | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/verify-tag (limited to 'scripts/verify-tag') diff --git a/scripts/verify-tag b/scripts/verify-tag new file mode 100755 index 0000000..b482e9d --- /dev/null +++ b/scripts/verify-tag @@ -0,0 +1,14 @@ +#!/bin/bash + +export GNUPGHOME=/etc/metadata/gnupg +mkdir -p $GNUPGHOME +export GPG=gpg2 + +git config --global gpg.program gpg2 + +tag=$(git tag -l "md-[0-9]*" | sort | tail -1) +if [ -z "$tag" ]; then + echo "no matching tag found" + exit 1 +fi +git checkout $tag && git tag -v $tag -- cgit v1.2.3