diff --git a/lib/vagrant/action/builtin/box_add.rb b/lib/vagrant/action/builtin/box_add.rb index c7c669bcc..5b199f78a 100644 --- a/lib/vagrant/action/builtin/box_add.rb +++ b/lib/vagrant/action/builtin/box_add.rb @@ -340,7 +340,11 @@ module Vagrant # so we can resume the download later. if !@download_interrupted @logger.debug("Deleting temporary box: #{box_url}") - box_url.delete if box_url + begin + box_url.delete if box_url + rescue Errno::ENOENT + # Not a big deal, the temp file may not actually exist + end end end