Skip to content

Commit

Permalink
[Command Line] Fixed bug that caused the --write-configuration option…
Browse files Browse the repository at this point in the history
… to break.
  • Loading branch information
chriseppstein committed May 2, 2009
1 parent 5582878 commit ddfba8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/compass/commands/write_configuration.rb
Expand Up @@ -15,6 +15,10 @@ def perform
installer.write_configuration_files
end

def installer_args
[nil, project_directory, options]
end

end
end
end
2 changes: 1 addition & 1 deletion lib/compass/installers/base.rb
Expand Up @@ -14,7 +14,7 @@ def initialize(template_path, target_path, options = {})
@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

Expand Down

0 comments on commit ddfba8e

Please sign in to comment.