这是indexloc提供的服务,不要输入任何密码
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Create a a Vagrantfile that looks like the following, ensure to add `config.env.
```ruby
Vagrant.configure("2") do |config|
config.env.enable # enable the plugin
config.vm.box = ENV['BOX_NAME']
config.vm.box = #{ENV['BOX_NAME']}
end
```

Expand Down
2 changes: 1 addition & 1 deletion example/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Vagrant.configure(2) do |config|
config.env.enable
config.vm.box = ENV['BOX_NAME']
config.vm.box = #{ENV['BOX_NAME']}
config.vm.network "forwarded_port", guest: 80, host: 8080, auto_correct: true

config.vm.provider "virtualbox" do |v|
Expand Down