mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +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:
parent
b80760003e
commit
ce50dbb411
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue