|
@@ -94,8 +94,7 @@ print("Gathering file list took %.1fs" % elapsed)
|
|
|
print('Processing files')
|
|
|
for f in files:
|
|
|
sys.stdout.write('Processing %s... ' % f)
|
|
|
- _, ext = os.path.splitext(f)
|
|
|
- if not ext in ['.tgz', '.siginfo', '.sig']:
|
|
|
+ if not f.endswith(('.tar.zst', '.siginfo', '.sig')):
|
|
|
# Most likely a temp file, skip it
|
|
|
print('skipping')
|
|
|
continue
|