Author: gmcdonald
Date: Fri Aug 25 20:37:15 2006
New Revision: 437060
URL: http://svn.apache.org/viewvc?rev=437060&view=rev
Log:
Workaround for problem described at FOR-925
Modified:
forrest/trunk/main/targets/site.xml
Modified: forrest/trunk/main/targets/site.xml
URL:
http://svn.apache.org/viewvc/forrest/trunk/main/targets/site.xml?rev=437060&r1=437059&r2=437060&view=diff
==============================================================================
--- forrest/trunk/main/targets/site.xml (original)
+++ forrest/trunk/main/targets/site.xml Fri Aug 25 20:37:15 2006
@@ -215,12 +215,14 @@
<equals arg1="${isUnix}" arg2="true"/>
<then>
<fixcrlf srcdir="${project.site-dir}" eol="unix">
- <include name="**/*.html"/>
+ <include name="**/*.html"/>
+ <include name="**/*.css"/>
</fixcrlf>
</then>
<else>
<fixcrlf srcdir="${project.site-dir}">
- <include name="**/*.html"/>
+ <include name="**/*.html"/>
+ <include name="**/*.css"/>
</fixcrlf>
</else>
</if>