summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-01-03 03:43:34 +1100
committer Vas Crabb <vas@vastheman.com>2019-01-03 03:43:34 +1100
commitb841540955f5fc00ef04eb84b7f22645e909d4e3 (patch)
treeed3674d9e4846a280f3a0cbd9fc18cc287570558 /src/tools
parent5e75e186e0d33d9cda7683c6da5a9297d6964321 (diff)
srcclean: treat *.xslt as XML (nw)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/srcclean.cpp3
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