# File lib/compass/installers/base.rb, line 32
      def init
        dirs = manifest.map do |entry|
          File.dirname(send("install_location_for_#{entry.type}", entry.to, entry.options))
        end

        if manifest.has_stylesheet?
          dirs << sass_dir
          dirs << css_dir
        end

        dirs.uniq.sort.each do |dir|
          directory targetize(dir)
        end
      end