diff options
author | Bin Hu <bh526r@att.com> | 2018-09-15 04:02:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-15 04:02:41 +0000 |
commit | d4b540d16ef8b705e34ef61c265e78593c0d8bcd (patch) | |
tree | f74bf28d20768b417be9816fa92a5105bb0ef102 | |
parent | 136c21b65e58eab0c8d4c3e09d0c839eb27c53b6 (diff) | |
parent | 73bf313da8570d485c6f46228b1ce485fa9a7589 (diff) |
Merge "Change working dir in Vagrantfile"
-rw-r--r-- | vagrant/Vagrantfile | 2 |
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 |