1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

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.
This commit is contained in:
Tim Schumacher 2023-09-06 23:50:31 +02:00
parent b80760003e
commit ce50dbb411

View file

@ -744,7 +744,7 @@ do_dev() {
git config core.autocrlf false git config core.autocrlf false
git add --all --force git add --all --force
git commit -a -m 'Initial import' git commit -a -m 'Initial import'
git tag source git tag --no-sign source
fi fi
if [ -d "${PORT_META_DIR}/patches" ] && [ -n "$(find -L "${PORT_META_DIR}/patches" -maxdepth 1 -name '*.patch' -print -quit)" ]; then 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 done
fi fi
git tag patched git tag --no-sign patched
popd popd
} }