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:
parent
c27b8e7fe7
commit
ffe9f0b0fb
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue