Skip to content

Commit

Permalink
Fix error in installation instructions on scss-based projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Oct 11, 2010
1 parent d5e4ba7 commit 45ca5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compass/app_integration/rails/installer.rb
Expand Up @@ -122,7 +122,7 @@ def stylesheet_links
manifest.each_stylesheet do |stylesheet|
# Skip partials.
next if File.basename(stylesheet.from)[0..0] == "_"
ss_line = " = stylesheet_link_tag '#{stylesheet_prefix}#{stylesheet.to.sub(/\.sass$/,'.css')}'"
ss_line = " = stylesheet_link_tag '#{stylesheet_prefix}#{stylesheet.to.sub(/\.s[ac]ss$/,'.css')}'"
if stylesheet.options[:media]
ss_line += ", :media => '#{stylesheet.options[:media]}'"
end
Expand Down

0 comments on commit 45ca5eb

Please sign in to comment.