Revert "Merge pull request #4861 from obfusk/fix-tmpdir-delete"

This reverts commit 00e388a8977f519f077dda44aff2ddc4c1b9b05a, reversing
changes made to d1691c21c7c61b84c6c98169ca9e3195f8848510.
This commit is contained in:
Seth Vargo 2014-12-02 12:32:31 -05:00
parent b2fdd29580
commit 9242e39a23

View File

@ -1,4 +1,3 @@
require "fileutils"
require "monitor"
require "pathname"
require "set"
@ -80,9 +79,9 @@ module Vagrant
# Removes any temporary files created by init
def deinit
%w{ BUNDLE_APP_CONFIG BUNDLE_CONFIG BUNDLE_GEMFILE }.each do |entry|
FileUtils.remove_entry_secure(ENV[entry], true)
end
File.unlink(ENV["BUNDLE_APP_CONFIG"]) rescue nil
File.unlink(ENV["BUNDLE_CONFIG"]) rescue nil
File.unlink(ENV["GEMFILE"]) rescue nil
end
# Installs the list of plugins.