Log output for additional files

This commit is contained in:
Mitchell Hashimoto 2010-02-28 00:40:50 -08:00
parent 3c546ef2c7
commit affe1cd9ad
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ module Vagrant
Tar.open(tar_path, File::CREAT | File::WRONLY, 0644, Tar::GNU) do |tar|
begin
current_dir = FileUtils.pwd
@include_files.each { |f| tar.append_file(f) }
@include_files.each do |f|
logger.info "Packaging additional file: #{f}"
tar.append_file(f)
end
FileUtils.cd(temp_path)