From 134160885cabc6be08550c8f2124d9e08edb542b Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Wed, 20 Apr 2011 19:27:11 -0700 Subject: [PATCH] Store the compiler importer in the Sass options so sass doesn't make one. --- lib/compass/compiler.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/compass/compiler.rb b/lib/compass/compiler.rb index d8a24fcf..a611f6ef 100644 --- a/lib/compass/compiler.rb +++ b/lib/compass/compiler.rb @@ -12,7 +12,8 @@ module Compass self.options = options self.options[:cache_location] ||= determine_cache_location Compass.configure_sass_plugin! - self.importer = Sass::Importers::Filesystem.new(from) + + self.options[:importer] = self.importer = Sass::Importers::Filesystem.new(from) self.staleness_checker = Sass::Plugin::StalenessChecker.new(options) end