Merge pull request #2434 from emyl/machine-id-string
Machine ID should always be a string
This commit is contained in:
commit
d0ae6e960c
|
@ -220,7 +220,7 @@ module Vagrant
|
|||
end
|
||||
|
||||
# Store the ID locally
|
||||
@id = value
|
||||
@id = value.to_s
|
||||
|
||||
# Notify the provider that the ID changed in case it needs to do
|
||||
# any accounting from it.
|
||||
|
|
Loading…
Reference in New Issue