From ffe9f0b0fbcf93cd412ab2093c1977bf44ebf636 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 7 Jul 2020 14:34:48 -0700 Subject: [PATCH] Vagrantfile.centos7: do not ignore script failures Add `set -e -u -o pipefail` so the script will fail early if there's an error. Signed-off-by: Kir Kolyshkin --- Vagrantfile.centos7 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile.centos7 b/Vagrantfile.centos7 index 7342e4ab..68ae9f0e 100644 --- a/Vagrantfile.centos7 +++ b/Vagrantfile.centos7 @@ -12,6 +12,8 @@ Vagrant.configure("2") do |config| v.cpus = 2 end config.vm.provision "shell", inline: <<-SHELL + set -e -u -o pipefail + # configuration GO_VERSION="1.13.11" BATS_VERSION="v1.2.0"