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 <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin 2020-07-07 14:34:48 -07:00
parent c27b8e7fe7
commit ffe9f0b0fb
1 changed files with 2 additions and 0 deletions

View File

@ -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"