From 20df6dec00b7dc65371ee4ac2cccef1ecc95607a Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Wed, 12 Jun 2013 10:57:31 -0400 Subject: [PATCH] Default to unicode for sass compilation. If no default is provided, sass falls back to the system default. This fails when the system default is not unicode because various sass files have unicode characters in them. --- rakefiles/assets.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefiles/assets.rake b/rakefiles/assets.rake index 009c87048c..4530ffe13b 100644 --- a/rakefiles/assets.rake +++ b/rakefiles/assets.rake @@ -52,7 +52,7 @@ def sass_cmd(watch=false, debug=false) "sass #{debug ? '--debug-info' : '--style compressed'} " + "--load-path #{sass_load_paths.join(' ')} " + "--require ./common/static/sass/bourbon/lib/bourbon.rb " + - "#{watch ? '--watch' : '--update'} #{sass_watch_paths.join(' ')}" + "#{watch ? '--watch' : '--update'} -E utf-8 #{sass_watch_paths.join(' ')}" end desc "Compile all assets"