From 1078c37807bf65c0d553b63a7dac72739b794789 Mon Sep 17 00:00:00 2001 From: guessi Date: Tue, 14 Feb 2017 11:56:48 +0800 Subject: [PATCH] Missing box-version for Vagrantfile.min.erb Signed-off-by: guessi --- templates/commands/init/Vagrantfile.min.erb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/commands/init/Vagrantfile.min.erb b/templates/commands/init/Vagrantfile.min.erb index cfb42fb84..e9212d815 100644 --- a/templates/commands/init/Vagrantfile.min.erb +++ b/templates/commands/init/Vagrantfile.min.erb @@ -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 -%>