daca2: skip flite, quick fix of possible hang
This commit is contained in:
parent
e3a12de057
commit
c9491f952b
|
@ -90,6 +90,12 @@ def scanarchive(fullpath):
|
|||
elif filename[-4:] == '.bz2':
|
||||
subprocess.call(['tar', 'xjvf', filename])
|
||||
|
||||
if filename[:5] == 'flite':
|
||||
results = open('results.txt', 'at')
|
||||
results.write('fixme: this package is skipped\n')
|
||||
results.close()
|
||||
return
|
||||
|
||||
dirname = None
|
||||
for s in glob.glob(filename[:2] + '*'):
|
||||
if os.path.isdir(s):
|
||||
|
|
Loading…
Reference in New Issue