Skip to content

Commit b577b12

Browse files
committed
daca2: skip boost to avoid hang
1 parent 30984ff commit b577b12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/daca2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ def scanarchive(filepath):
141141
elif filename[-4:] == '.bz2':
142142
subprocess.call(['tar', 'xjvf', filename])
143143

144-
if filename[:5] == 'flite':
144+
if filename[:5] == 'flite' or filename[:5] == 'boost':
145145
results = open('results.txt', 'at')
146-
results.write('fixme: the flite package is skipped\n')
146+
results.write('fixme: skipped package to avoid hang\n')
147147
results.close()
148148
return
149149

0 commit comments

Comments
 (0)