update cert gen script to exit on failure (#1713)

This commit is contained in:
Dane Walton 2020-10-23 15:44:03 -07:00 коммит произвёл GitHub
Родитель 598225d806
Коммит 2dc88db7d4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -12,6 +12,11 @@
# These certs are intended only to help demonstrate and prototype CA certs.
###############################################################################
set -x # Set trace on
set -o errexit # Exit if command failed
set -o nounset # Exit if variable not set
set -o pipefail # Exit if pipe failed
root_ca_dir="."
home_dir="."
algorithm="genrsa"