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

This reverts commit 00e388a897, reversing
changes made to d1691c21c7.
This commit is contained in:
Seth Vargo 2014-12-02 12:32:31 -05:00
parent b2fdd29580
commit 9242e39a23
1 changed files with 3 additions and 4 deletions

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.