From 3349f51a23a4be33ccad8e2131bb99dde82c6317 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 30 Apr 2024 13:40:11 +0200 Subject: [PATCH] ca/deb/mkdir --- cd.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cd.sh b/cd.sh index eb54620..47a94a6 100644 --- a/cd.sh +++ b/cd.sh @@ -197,7 +197,10 @@ local target local text cd_step "Copy CA" case "${CD_OS_NAME}" in - "debian") target="/usr/local/share/ca-certificates" ;; + "debian") + target="/usr/local/share/ca-certificates" + cd_mkdir "${target}" + ;; "alma") target="/etc/pki/ca-trust/source/anchors" ;; *) cd_error_os "cd_copy_ca" ;; esac