From 8025a51c6a13641e3dd1da987e6d1db6013f2120 Mon Sep 17 00:00:00 2001 From: Akis Kesoglou Date: Tue, 12 Jun 2018 12:43:40 +0300 Subject: [PATCH] =?UTF-8?q?Do=20not=20report=20failure=20on=20`vagrant=20u?= =?UTF-8?q?p`=20if=20there=E2=80=99s=20no=20project?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a2df48e..8708501 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -29,6 +29,6 @@ Vagrant.configure('2') do |config| config.vm.provision :shell, privileged: false, inline: "cd /home/vagrant/open-balena && ./scripts/start-project #{ENV.fetch('OPENBALENA_PROJECT_NAME', '')} #{ENV.fetch('OPENBALENA_HOST_NAME', '')}" config.vm.provision :shell, privileged: false, - inline: 'cd /home/vagrant/open-balena && ./scripts/run-fig-command up -d', + inline: 'cd /home/vagrant/open-balena && ./scripts/run-fig-command up -d || true', run: 'always' end