tools/pr.py: use -b to just checkout pull request code in a branch
This commit is contained in:
parent
389df97352
commit
7fe021199b
|
@ -23,6 +23,10 @@ if response.status_code == 200:
|
||||||
print('FAIL; There was some conflict when rebasing the changes')
|
print('FAIL; There was some conflict when rebasing the changes')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
if '-b' in sys.argv:
|
||||||
|
print('Done.')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
p = subprocess.Popen(['git', 'show', '--format=%an <%ae>', sha], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
p = subprocess.Popen(['git', 'show', '--format=%an <%ae>', sha], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
comm = p.communicate()
|
comm = p.communicate()
|
||||||
author = comm[0].decode(encoding='utf-8', errors='ignore').split('\n')[0]
|
author = comm[0].decode(encoding='utf-8', errors='ignore').split('\n')[0]
|
||||||
|
|
Loading…
Reference in New Issue