From: Victor Morales Date: Thu, 13 Sep 2018 08:44:51 +0000 (-0700) Subject: Change working dir in Vagrantfile X-Git-Tag: 3.0.0-ONAP~48^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=73bf313da8570d485c6f46228b1ce485fa9a7589;p=multicloud%2Fk8s.git 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 --- 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