Merge branch 'fix_failed_buildfull_master' of https://github.com/luizluca/easy-rsa into luizluca-fix_failed_buildfull_master

This commit is contained in:
Eric F Crist 2019-05-06 22:19:25 -05:00
commit a4dc103a87
No known key found for this signature in database
GPG Key ID: 72964219390D0D0E

View File

@ -839,7 +839,10 @@ Matching file found at: "
gen_req "$name" batch $req_opts
# Sign it
sign_req "$crt_type" "$name" batch
( sign_req "$crt_type" "$name" batch ) || {
rm -f "$req_out" "$key_out"
die "Failed to sign '$name'"
}
} # => build_full()