summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2017-05-30 11:25:49 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2017-05-30 11:25:49 +0100
commit46369af3a8cd9caec4fb93452fdee15acc7269b3 (patch)
tree47507d2a155302b71f8a6bea4c16cabf13b9c17a /Vagrantfile
parent35fe0dcf571abf95277d760251c0788a93944306 (diff)
downloadybd-46369af3a8cd9caec4fb93452fdee15acc7269b3.tar.gz
fix Vagrantfile to install ybd properly
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 449bd04..c972d09 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -12,8 +12,9 @@ Vagrant.configure(2) do |config|
config.vm.provision "shell", inline: <<-SHELL
cd /src
- ./ybd/install_dependencies.sh
git clone git://git.baserock.org/baserock/baserock/definitions
- echo "base: /src" > ybd/ybd.conf
+ cd ybd
+ ./install_dependencies.sh
+ echo "base: /src" > ./ybd.conf
SHELL
end