Browse Source

Add -t to git fetch for release-notes.py

pull/4/head
Jay Graber 7 years ago
parent
commit
24a24abf75
  1. 2
      zcutil/release-notes.py

2
zcutil/release-notes.py

@ -71,7 +71,7 @@ def document_authors():
def generate_release_note(version, filename):
print "Automatically generating release notes for {0} from git shortlog. Should review {1} for accuracy.".format(version, filename)
# fetches latest tags, so that latest_tag will be correct
subprocess.Popen(['git fetch'], shell=True, stdout=subprocess.PIPE).communicate()[0]
subprocess.Popen(['git fetch -t'], shell=True, stdout=subprocess.PIPE).communicate()[0]
latest_tag = subprocess.Popen(['git describe --abbrev=0'], shell=True, stdout=subprocess.PIPE).communicate()[0].strip()
print "Previous release tag: ", latest_tag
notes = subprocess.Popen(['git shortlog --no-merges {0}..HEAD'.format(latest_tag)], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE).communicate()[0]

Loading…
Cancel
Save