Revert "LUCENE-7265: Fix addVersion to cherry-pick downstream changes by using the change id"

This reverts commit 54b873c2f9.
This commit is contained in:
Steve Rowe 2016-05-13 16:33:06 -04:00
parent 3b0a79a13e
commit 97ca679d4b
2 changed files with 1 additions and 9 deletions

View File

@ -187,10 +187,7 @@ def read_config():
return c
def main():
c = read_config()
if c.changeid:
cherry_pick_change(c.changeid)
c = read_config()
print('\nAdding new version %s' % c.version)
update_changes('lucene/CHANGES.txt', c.version)

View File

@ -121,11 +121,6 @@ version_prop_re = re.compile('version\.base=(.*)')
def find_current_version():
return version_prop_re.search(open('lucene/version.properties').read()).group(1)
def cherry_pick_change(changeid):
print('\nCherry-picking downstream change %s...' % changeid, end='')
run('git cherry-pick %s' % changeid)
print('done')
if __name__ == '__main__':
print('This is only a support module, it cannot be run')
sys.exit(1)