From 856ebf4de0160165a255a80c2ede9eeaaa099b99 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 16 Jan 2014 18:02:57 -0500 Subject: Be more correct with how we run make and fail. --- vagrant/gluster/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/gluster/Vagrantfile b/vagrant/gluster/Vagrantfile index 5066867..2451e7b 100644 --- a/vagrant/gluster/Vagrantfile +++ b/vagrant/gluster/Vagrantfile @@ -230,7 +230,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| if provision.is_a?(TrueClass) or (provision.is_a?(Array) and provision.include?(puppet_hostname)) cwd = `pwd` mod = File.join(projectdir, 'puppet', 'modules') - `cd #{mod} && make gluster &> /dev/null && cd #{cwd}` + `cd #{mod} && make gluster &> /dev/null; cd #{cwd}` end # -- cgit