You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the dyno couldn't find the Heroku binary. How can I run the command successfully?
The script that I have used
#!/bin/shset -e
# NEEDS THE FOLLOWING VARS IN ENV:# DOMAIN# CLOUDFLARE_TOKEN# CLOUDFLARE_ACCOUNT_ID# HEROKU_API_KEY# HEROKU_APP
git clone https://github.com/Neilpang/acme.sh.git
cd ./acme.sh
# Force ensures it doesnt fail because of lack of cron
./acme.sh --install --force
# Map to environment variables that the ACME script requiresexport CF_Token=$CLOUDFLARE_TOKENexport CF_Account_ID=$CLOUDFLARE_ACCOUNT_ID# Generate wildcard certificate (this will take approx 130s)~/.acme.sh/acme.sh --server letsencrypt --issue -d $DOMAIN -d "*.$DOMAIN" --dns dns_cf
# Update the certificate in the live app
heroku certs:update "/app/.acme.sh/$DOMAIN/fullchain.cer""/app/.acme.sh/$DOMAIN/$DOMAIN.key" --confirm $HEROKU_APP --app $HEROKU_APP
The text was updated successfully, but these errors were encountered:
Everything was perfect, except this line -
acm/cert.sh
Line 29 in b5085d4
It seems the dyno couldn't find the Heroku binary. How can I run the command successfully?
The script that I have used
The text was updated successfully, but these errors were encountered: