print message when xmllint not available

This commit is contained in:
2024-08-04 18:05:26 -05:00
committed by Celtic Minstrel
parent 0375cda714
commit f54931760b

View File

@@ -55,6 +55,8 @@ else:
if have_xmllint:
xmllint_command = ('xmllint', '--nonet', '--noout', '--schema', '../schemas/dialog.xsd')
else:
print('xmllint not found! skipping xmllint step')
if have_xmllint: # This is separate so that alternate xml validators could be used
def validate_dialog(target, source, env):