I am creating a new backdrop site locally. I am running Linux Mint 20.
the command:
drush dlb backdrop
Fails
ERROR: cannot verify github.com's certificate......
I can use wget as below which works, but I have the drush dlb backdrop in a script, so need that to work.
wget --no-check-certificate https://github.com/backdrop/backdrop/releases/download/1.19.0/backdrop.zip
I have tried this command to update the ca certificates, but no good.
sudo update-ca-certificates -f
How can I fix this?
I assume you mean
dlb
, since you're also referencingwget
.In your
wget
command, you specify the--no-check-certificate
option, which would eliminate the check error you're seeing with thedrush
command. What happens if you try thewget
command without that option?I think this is a problem with your OS configuration or installed software. Maybe you can try what is recommended in this message: https://forums.linuxmint.com/viewtopic.php?p=1841169&sid=cbf076166ddbfdb...