[Sass] Don't add stuff to a persistent :load_paths option.

This commit is contained in:
Nathan Weizenbaum 2009-04-07 15:53:05 -07:00
parent c8196f99ba
commit 7b9d6303bd
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ END
end
def import_paths
paths = @options[:load_paths] || []
paths = (@options[:load_paths] || []).dup
paths.unshift(File.dirname(@options[:filename])) if @options[:filename]
paths
end