website: make linked clones work w/ 1.8.0 & newer

The previous code only worked on Vagrant 1.8.x, but not on 1.9.x or
newer.
This commit is contained in:
unclejack 2017-01-06 16:09:48 +02:00
parent 159fca9d13
commit 877e7e29b1
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
```