diff --git a/certs/renewcerts.sh b/certs/renewcerts.sh index 07aa77010..100c8ab30 100755 --- a/certs/renewcerts.sh +++ b/certs/renewcerts.sh @@ -66,6 +66,7 @@ check_result(){ run_renewcerts(){ cd certs/ || { echo "Couldn't cd to certs directory"; exit 1; } echo "" + #move the custom cnf into our working directory cp renewcerts/wolfssl.cnf wolfssl.cnf || exit 1 @@ -587,6 +588,17 @@ run_renewcerts(){ echo "End of section" echo "---------------------------------------------------------------------" ############################################################ + ###### calling gen-testcerts.sh ################## + ############################################################ + echo "Calling gen-testcerts.sh" + echo "" + cd ./test || { echo "Failed to switch to dir ./test"; exit 1; } + ./gen-testcerts.sh + check_result $? "gen-testcerts.sh" + cd ../ || exit 1 + echo "End of section" + echo "---------------------------------------------------------------------" + ############################################################ ########## generate ocsp certs ###################### ############################################################ echo "Changing directory to ocsp..."