Fix user and poster not showing in vouchers

This commit is contained in:
2026-08-29 11:37:54 +00:00
parent 4f89cd1161
commit 5cfa02a6ef
18 changed files with 163 additions and 33 deletions
+6
View File
@@ -3,6 +3,12 @@ set -euo pipefail
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path" || exit
last_commit_subject=$(git log -1 --format=%s)
if [[ "$last_commit_subject" =~ ^Version\ Bump ]]; then
echo "Last commit is already a version bump (\"$last_commit_subject\"). Nothing to do."
exit 0
fi
if [ 1 -eq "$#" ]
then
current_version=$(grep -m 1 '^version = ' brewman/pyproject.toml | sed -E 's/version = "([^"]+)"/\1/')