mirror of https://github.com/apache/lucene.git
Revert "LUCENE-7265: Fix addVersion to cherry-pick downstream changes by using the change id"
This reverts commit 54b873c2f9
.
This commit is contained in:
parent
3b0a79a13e
commit
97ca679d4b
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue