Add a few more notes to git-export-release.sh.

Change-Id: I8a2250387cc3187ecd5ca8abb6e29442668398a9
Reviewed-on: https://code.wireshark.org/review/27604
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2018-05-16 13:14:20 -07:00
parent 4edfcaa102
commit 7612814769
1 changed files with 6 additions and 0 deletions

View File

@ -43,6 +43,9 @@ STASH_POP=False
# We might be able to avoid stashing by doing one of the following:
#
# For official releases, update our build process such that we don't
# need to modify version.conf.
#
# Use tar to append a new or updated version.conf to the archive.
# This would require detecting our local tar flavor (GNU or BSD) and
# constructing a compatible command. BSD tar appears to support inline
@ -54,6 +57,9 @@ STASH_POP=False
# 'git_description=$Format:...$' in version.conf. export-subst uses
# 'git log' formatting. I'm not sure if we can build $DESCRIPTION
# from that.
#
# Rewrite this script in Python and use the built-in tarfile module
# to replace version.conf.
if [ "$COMMIT" == "HEAD" ] ; then
echo "Adding description $DESCRIPTION"