From b890fbdba2e9b1e5187aa70993ca6223ccbdea1e Mon Sep 17 00:00:00 2001
From: wiseman <jjwiseman@gmail.com>
Date: Mon, 29 Apr 2013 00:06:32 -0700
Subject: [PATCH] Use absolute path for config.vm.share_folder.  Fixes issue
 #216.

---
 Vagrantfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Vagrantfile b/Vagrantfile
index d69466226..686282371 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -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"]
-- 
GitLab