Browse Source

Alterações no script de verificar commits entre 3.1.x e master

pull/3052/head
Cesar Carvalho 5 years ago
parent
commit
c885668176
  1. 4
      scripts/check_commits.py

4
scripts/check_commits.py

@ -18,10 +18,10 @@ commits_master = [commit.replace('\r', '') for commit in commits_master]
for c, s in commits_3_1_x: for c, s in commits_3_1_x:
# retira os \r para evitar bugs # retira os \r para evitar bugs
c = c.replace('\r', '') c = c.replace('\r', '')
if c not in commits_master: if (c not in commits_master) and ('Release' not in c):
print('---------------------------------------------------------------------') print('---------------------------------------------------------------------')
print('Data: ' + s['data'][:10]) print('Data: ' + s['data'][:10])
print(s['sha'][:7] + '-> ' + c) print(s['sha'][:7] + ' -> ' + c)
print('---------------------------------------------------------------------') print('---------------------------------------------------------------------')

Loading…
Cancel
Save