[Installer] Fixed a bug that caused the output after installing to not display the conditional comments.

This commit is contained in:
Chris Eppstein 2009-07-07 11:31:03 -07:00
parent 94e9696b30
commit 48a0356ad8

View File

@ -121,8 +121,8 @@ Compass.configure_sass_plugin!
if stylesheet.options[:media] if stylesheet.options[:media]
ss_line += ", :media => '#{stylesheet.options[:media]}'" ss_line += ", :media => '#{stylesheet.options[:media]}'"
end end
if stylesheet.options[:ie] if stylesheet.options[:condition]
ss_line = " /[if IE]\n " + ss_line ss_line = " /[if #{stylesheet.options[:condition]}]\n " + ss_line
end end
html << ss_line + "\n" html << ss_line + "\n"
end end