# File lib/compass/exec/project_options_parser.rb, line 6
  def set_dir_or_path(type, dir)
    if Pathname.new(dir).absolute?
      self.options["#{type}_path""#{type}_path"] = dir.tr('\\','/')
    else
      self.options["#{type}_dir""#{type}_dir"] = dir.tr('\\','/')
    end
  end