Fix curl command syntax in start.letsencrypt.sh for proper installation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
gyurix
2025-11-05 09:22:24 +01:00
parent b92ef2e2b1
commit 62303cf2fc

View File

@@ -55,7 +55,7 @@ create_json() {
start_letsencrypt() {
cd /root
if [ "$LETSENCRYPT_INSTALLED" != "true" ]; then
curl https://get.acme.sh | | sh -s -- --home /acme.sh/$DOMAIN email=$EMAIL
curl https://get.acme.sh | sh -s -- --home /acme.sh/$DOMAIN email=$EMAIL
LETSENCRYPT_INSTALLED=true
fi