create-filelist: add '.' to png and jpg
Brown paper bag fix for previous commit. Sigh.
This commit is contained in:
parent
6fa8dbfcf2
commit
3d9840d867
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ def main():
|
|||
# opts.filelist.write(entry.path + '\n')
|
||||
print(entry.path, file=opts.filelist)
|
||||
# write to filtered list if appropriate
|
||||
skips = ('.rpm', '.drpm', '.dtb', '.html', 'png', 'jpg')
|
||||
skips = ('.rpm', '.drpm', '.dtb', '.html', '.png', '.jpg')
|
||||
if not any(entry.path.endswith(skip) for skip in skips) and not (entry.is_dir()):
|
||||
print(entry.path, file=opts.filterlist)
|
||||
if entry.name in opts.checksum_files:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue