diff options
-rw-r--r-- | src/tools/srcclean.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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 |