core: catch ENOENT as not a metadata URL

This commit is contained in:
Mitchell Hashimoto 2014-01-24 13:16:07 -08:00
parent 2ea6f92a6c
commit d278fb2661
1 changed files with 2 additions and 0 deletions

View File

@ -433,6 +433,8 @@ module Vagrant
return true
rescue Errors::BoxMetadataMalformed
return false
rescue Errno::ENOENT
return false
end
end