[Command Line] Fixed bug that caused the --write-configuration option to break.

This commit is contained in:
Chris Eppstein 2009-05-02 14:30:18 -07:00
parent 55828788d1
commit ddfba8ec83
2 changed files with 5 additions and 1 deletions

View File

@ -15,6 +15,10 @@ module Compass
installer.write_configuration_files
end
def installer_args
[nil, project_directory, options]
end
end
end
end

View File

@ -14,7 +14,7 @@ module Compass
@target_path = target_path
@working_path = Dir.getwd
@options = options
@manifest = Manifest.new(manifest_file)
@manifest = Manifest.new(manifest_file) if template_path
self.logger = options[:logger]
end