Merge pull request #8283 from guessi/issue-8282

Missing box-version for Vagrantfile.min.erb
This commit is contained in:
Chris Roberts 2017-02-22 12:28:27 -08:00 committed by GitHub
commit 5a69d83a55
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
Vagrant.configure("2") do |config|
config.vm.box = "<%= box_name %>"
<% if box_version -%>
config.vm.box_version = "<%= box_version %>"
<% end -%>
<% if box_url -%>
config.vm.box_url = "<%= box_url %>"
<% end -%>