mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
Sync folder now specifies id
Vagrant 1.1.5 seems to think we are overriding a previous shared folder in our script. Passing the id solves this.
This commit is contained in:
parent
5273657537
commit
acbf4cb412
1 changed files with 1 additions and 1 deletions
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -28,7 +28,7 @@ Vagrant.configure("2") do |config|
|
|||
config.vm.network :forwarded_port, guest: 1080, host: 4080 # Mailcatcher
|
||||
|
||||
nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/
|
||||
config.vm.synced_folder ".", "/vagrant", :nfs => nfs_setting
|
||||
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", :nfs => nfs_setting
|
||||
|
||||
chef_cookbooks_path = ["chef/cookbooks"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue