Update: remove path length parameter from make_ca function and set it to 1 in certificate generation
All checks were successful
/ test (push) Successful in 12s

This commit is contained in:
2026-03-05 06:20:14 +01:00
parent b47d307d88
commit fe208451b3
2 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ echo "---------------------------------"
echo
# Create a new CA with pathlen 1
if ! make_ca --path-len 1 "$CA_DIR" "Test Two Level CA"; then
if ! make_ca "$CA_DIR" "Test Two Level CA"; then
echo "ERROR: Failed to create CA." >&2
exit 1
fi