From 417d22dff1b00b938c09be5a278449ad15375d04 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 31 Aug 2024 09:55:10 +0200 Subject: [PATCH] verify --- spcd/bootstrap.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index 39b2f1b..ba26ddc 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -1165,9 +1165,10 @@ spcd_step__ca_update_certificates() { spcd_step__packages_verify_https() { spcd_step "Verify HTTPS" - spcd_pvh__path="$(spcd_https_path)" - if [ -n "${spcd_pvh__path}" ]; then - spcd_os_rm "${spcd_pvh__path}" + local path + path="$(spcd_https_path)" + if [ -n "${path}" ]; then + spcd_os_rm "${path}" fi }