aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-09-13 01:44:51 -0700
committerVictor Morales <victor.morales@intel.com>2018-09-13 01:44:51 -0700
commit73bf313da8570d485c6f46228b1ce485fa9a7589 (patch)
tree5dddb3ea134f8c3aee161f70f731cdb26588263e
parentcb64a5fed1b10daa301235a2ef956b4805da99d3 (diff)
Change working dir in Vagrantfile
Given that the source code is shared to a different location is necessary to reflect this change in the Vagrantfile Change-Id: Iad47b49c5720d0d1a76fa9fa60c4d1ba60d0ab51 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MULTICLOUD-301
-rw-r--r--vagrant/Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index 61031bba..7ff18f06 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -109,7 +109,7 @@ Vagrant.configure("2") do |config|
installer.vm.synced_folder '../', '/root/go/src/k8-plugin-multicloud/', type: sync_type
installer.vm.provision 'shell' do |sh|
sh.path = "installer.sh"
- sh.args = ['-p', '-v', '-w', '/vagrant']
+ sh.args = ['-p', '-v', '-w', '/root/go/src/k8-plugin-multicloud/vagrant']
end
end
end