mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-22 14:54:38 +08:00
fix printing of versions with no changes
This commit is contained in:
parent
6d049c16d1
commit
ef4c583b3f
|
@ -113,9 +113,13 @@ def main():
|
|||
|
||||
tag = tags[0]
|
||||
for prev in tags[1:]:
|
||||
lines = git_log(tag[1],prev[1])
|
||||
if lines == ['']:
|
||||
tag = prev
|
||||
continue
|
||||
|
||||
print('%s (%s) %s; urgency=%s\n' % (args.name,tag[0],args.codename,args.urgency))
|
||||
|
||||
lines = git_log(tag[1],prev[1])
|
||||
for line in lines:
|
||||
print " * " + line
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user