From 73bf313da8570d485c6f46228b1ce485fa9a7589 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 13 Sep 2018 01:44:51 -0700 Subject: 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 Issue-ID: MULTICLOUD-301 --- vagrant/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit 1.2.3-korg