Filter "incomplete" so it is not considered as a package

This commit is contained in:
Maxime Gimeno 2019-04-26 10:38:24 +02:00
parent 5b03adfbb7
commit 6b9e918cc1
1 changed files with 16 additions and 12 deletions

View File

@ -49,7 +49,11 @@ with open(report_file, "rt") as test_report:
name="libCGALimageIO_shared"
elif name == "libCGAL_Qt5":
name="libCGALQt5_shared"
if name=="incomplete":
is_writing=False
is_ignored=False
continue
else:
if not os.path.isdir(name):
is_ignored=True
os.mkdir(name)