Simply typo fixes

This commit is contained in:
Mitchell Hashimoto 2010-04-12 00:06:53 -07:00
parent f0fa8aa5df
commit d30354540e
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ module Vagrant
end
def export
logger.info "Exporting VM to #{ovf_path} ..."
logger.info "Exporting VM to #{ovf_path}..."
@runner.vm.export(ovf_path) do |progress|
update_progress(progress, 100)
end

View File

@ -37,7 +37,7 @@ module Vagrant
end
def compress
logger.info "Packaging VM into #{tar_path} ..."
logger.info "Packaging VM into #{tar_path}..."
File.open(tar_path, File::CREAT | File::WRONLY, 0644) do |tar|
Archive::Tar::Minitar::Output.open(tar) do |output|
begin