use temporary files to avoid permission errors on Windows

This commit is contained in:
Mitchell Hashimoto 2015-11-20 15:18:41 -08:00
parent 9dc04b648c
commit 684410836c
1 changed files with 5 additions and 7 deletions

View File

@ -60,18 +60,16 @@ shared_context "unit" do
#
# @return [Pathname]
def temporary_file(contents=nil)
f = Tempfile.new("vagrant-unit")
dir = temporary_dir
f = dir.join("tempfile")
if contents
contents ||= ""
f.open("w") do |f|
f.write(contents)
f.flush
end
# Store the tempfile in an instance variable so that it is not
# garbage collected, so that the tempfile is not unlinked.
@_temp_files << f
return Pathname.new(f.path)
return Pathname.new(Vagrant::Util::Platform.fs_real_path(f.to_s))
end
# This creates a temporary directory and returns a {Pathname}