I was having issues with upgrading perlbrew
on OSX Lion. self-upgrade
did not upgrade. This command worked fine on Linux. This issue can be found at: App-perlbrew #226
Following steps helped resolve this issue
-
Using Firefox download the following certificates
- DigiCertHighAssuranceEVCA-1.pem
- DigiCertHighAssuranceEVRootCA.pem
- github.com.pem
- GTECyberTrustGlobalRoot.pem
-
This can be done by clicking on the 🔒 in the address bar; then
More information -> Security -> View Certificate -> Details -> Certificate Hierarchy
- Select each one and export as a
*.pem
file
- Select each one and export as a
-
sudo mkdir /usr/ssl/certs mv *pem /usr/ssl/certs/ cd /usr/ssl/certs && c_rehash
This will install only the certificates required for Github access. If you need all that are available; get it from http://curl.haxx.se/ca/cacert.pem
Reference: