diff --git a/tools/daca2.py b/tools/daca2.py index 987671814..a1366c82f 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -117,7 +117,7 @@ def removeLargeFiles(path): removeLargeFiles(g + '/') elif os.path.isfile(g) and g[-4:] != '.txt': statinfo = os.stat(g) - if statinfo.st_size > 100000: + if path.find('/clang/INPUTS/') > 0 or statinfo.st_size > 100000: os.remove(g)