#!/bin/bash

## Copyright (C) 2025 - 2026 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
## See the file COPYING for copying conditions.

## AI-Assisted

## Sign a git tag pointing at HEAD for the repo in the current working
## directory. Thin wrapper over dm-packaging-helper-script
## pkg_git_sign_tags invoked via --no-batch (single-repo, no package
## loop).

set -o errexit
set -o nounset
set -o pipefail
set -o errtrace
shopt -s inherit_errexit
shopt -s shift_verbose

dm-packaging-helper-script --no-batch pkg_git_sign_tags "$@"
