Merge pull request #8176 from unclejack/fix_linked_clones_docs

website: make linked clones work w/ 1.8.0 & newer
This commit is contained in:
Chris Roberts 2017-02-01 13:17:40 -08:00 committed by GitHub
commit a8966187af
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ To have backward compatibility:
```ruby
config.vm.provider 'virtualbox' do |v|
v.linked_clone = true if Vagrant::VERSION =~ /^1.8/
v.linked_clone = true if Vagrant::VERSION >= '1.8.0'
end
```