From ce50dbb411be4493c1c3e156e0f24225e5fd6635 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Wed, 6 Sep 2023 23:50:31 +0200 Subject: [PATCH] Ports: Pass `--no-sign` to tagging operations If the user chose to sign tags by default, not passing this flag will force a signed and therefore annotated tag, which requires a message. --- Ports/.port_include.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh index d50318ef1b..5c66ba2eaf 100755 --- a/Ports/.port_include.sh +++ b/Ports/.port_include.sh @@ -744,7 +744,7 @@ do_dev() { git config core.autocrlf false git add --all --force git commit -a -m 'Initial import' - git tag source + git tag --no-sign source fi if [ -d "${PORT_META_DIR}/patches" ] && [ -n "$(find -L "${PORT_META_DIR}/patches" -maxdepth 1 -name '*.patch' -print -quit)" ]; then @@ -770,7 +770,7 @@ do_dev() { done fi - git tag patched + git tag --no-sign patched popd }