daca2: we must bailout for now when checking insighttoolkit because there is some hang

This commit is contained in:
Daniel Marjamäki 2014-04-03 17:10:35 +02:00
parent 1a83338faf
commit 749117a7ff
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def scanarchive(filepath):
elif filename[-4:] == '.bz2':
subprocess.call(['tar', 'xjvf', filename])
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl':
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl' or filename[:7] == 'insight':
results = open('results.txt', 'at')
results.write('fixme: skipped package to avoid hang\n')
results.close()