Revert "Merge pull request #4861 from obfusk/fix-tmpdir-delete"
This reverts commit00e388a897
, reversing changes made tod1691c21c7
.
This commit is contained in:
parent
b2fdd29580
commit
9242e39a23
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue