diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index 6acf9a6..c5d4c86 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -257,10 +257,9 @@ spcd_git_url() { # ╰───────────┴─────────╯ spcd_openssl_x509() { - spcd_openssl_x509__file="${1}" - if [ -f "${spcd_openssl_x509__file}" ]; then + if [ -f "${1}" ]; then openssl x509 \ - -in "${spcd_openssl_x509__file}" \ + -in "${1}" \ -noout -text fi }