From: Jan Kiszka <[email protected]> Help the maintainer to not forget this step if needed.
Signed-off-by: Jan Kiszka <[email protected]> --- scripts/make_release | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/make_release b/scripts/make_release index fc14e2f..1f10576 100755 --- a/scripts/make_release +++ b/scripts/make_release @@ -2,7 +2,7 @@ # # EFI Boot Guard # -# Copyright (c) Siemens AG, 2014-2017 +# Copyright (c) Siemens AG, 2014-2022 # # Authors: # Jan Kiszka <[email protected]> @@ -34,6 +34,14 @@ if [ -n "`git status -s -uno`" ]; then exit 1 fi +match=$(grep -e "-version-info" $(git rev-parse --show-toplevel)/Makefile.am) +echo -e "Library version: ${match/*-version-info /}" +echo -ne "Still accurate? (y/N) " +read answer +if [ "$answer" != "y" ]; then + exit 1 +fi + echo -e "Tag commit\n\n `git log -1 --oneline`" echo -e "\nof branch\n\n `git branch | sed -n 's/^\* //p'`" echo -ne "\nas $name? (y/N) " -- 2.34.1 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/9314021edc5e5fcd8dadb7b4d035e0ceceb7ef2c.1650458258.git.jan.kiszka%40siemens.com.
