Use absolute path for config.vm.share_folder. Fixes issue #216.

This commit is contained in:
wiseman 2013-04-29 00:06:32 -07:00 committed by Pat Hickey
parent ccd38e58a1
commit b890fbdba2

2
Vagrantfile vendored
View File

@ -5,7 +5,7 @@ Vagrant::Config.run do |config|
config.vm.box = "ubuntu-12.04-32bit"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.share_folder("ardupilot", "~/ardupilot", ".")
config.vm.share_folder("ardupilot", "/home/vagrant/ardupilot", ".")
# Allow symlinks
config.vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/cross-compiler", "1"]