diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-08-21 09:48:21 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-08-21 09:48:21 +0200 |
commit | 2f4f8cda836e9d1a34e13e8c3e0683d75fcd9ad4 (patch) | |
tree | 743939519d585d6fe61b45030744cec6c6995df2 | |
parent | 90ccf228b51536bf99b153cfe06c50f9c4b99fc9 (diff) |
build: minor: Mention proper versioned tag in release announcement
The tags created by the 'release' target have a 'v' prefix, so add it to
the verification command mentioned in the generated release message.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | Misc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ announcement: $(Q)echo -e "Or via HTTP:\n" >> .MAIL_MSG $(Q)echo -e " wget http://pub.netsniff-ng.org/netsniff-ng/netsniff-ng-$(VERSION_SHORT).tar.gz\n" >> .MAIL_MSG $(Q)echo -e "The release can be verified via Git (see README):\n" >> .MAIL_MSG - $(Q)echo -e " git tag -v $(VERSION_SHORT)\n" >> .MAIL_MSG + $(Q)echo -e " git tag -v v$(VERSION_SHORT)\n" >> .MAIL_MSG $(Q)echo -e "Major high-level changes since the last release are:\n" >> .MAIL_MSG $(Q)echo -e " *** BLURB HERE (specific bits) ***\n" >> .MAIL_MSG $(Q)echo -e "Contributions since last release:\n" >> .MAIL_MSG |