From b841540955f5fc00ef04eb84b7f22645e909d4e3 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Thu, 3 Jan 2019 03:43:34 +1100 Subject: [PATCH] srcclean: treat *.xslt as XML (nw) --- src/tools/srcclean.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/srcclean.cpp b/src/tools/srcclean.cpp index f42e3bf83a7..431bc00434c 100644 --- a/src/tools/srcclean.cpp +++ b/src/tools/srcclean.cpp @@ -1790,7 +1790,8 @@ bool is_xml_extension(char const *ext) return !core_stricmp(ext, ".hsi") || !core_stricmp(ext, ".lay") || - !core_stricmp(ext, ".xml"); + !core_stricmp(ext, ".xml") || + !core_stricmp(ext, ".xslt"); } } // anonymous namespace