Skip to content

Commit 11771e4

Browse files
committed
Add transtype check
1 parent 0e3a613 commit 11771e4

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

process_css_extend_template.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
<local name="is.html.transform"/>
1313
<local name="extend.css.path"/>
1414
<condition property="is.html.transform">
15-
<equals arg1="${out.ext}" arg2=".html"/>
15+
<or>
16+
<equals arg1="${out.ext}" arg2=".html"/>
17+
<!-- add any additional missing transtypes here -->
18+
<contains string="${transtype}" substring="HTML" casesensitive="no"/>
19+
<contains string="${transtype}" substring="eclipsehelp" casesensitive="no"/>
20+
</or>
1621
</condition>
1722
<condition property="extend.css.path" value="${user.csspath}" else="">
1823
<isset property="user.csspath"/>

0 commit comments

Comments
 (0)