Integrating Minitest with Shippable
I know, everyone uses Travis. I have nothing against it. But in case you want to test and/or …
Today, once again, my environment start throwing that SSL cert error.
I followed the basics of this common link (and also very good, by the way), but sadly id didn’t solve the issue. So, I came across this blog post which solve my problem. I just did:
$ brew update
$ brew install openssl
$ brew link openssl --force
$ brew install curl-ca-bundle
# this next line makes the difference for me!
$ export SSL_CERT_FILE=/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt
And now it seems to be working again.
I’ll just leave this here, in case anyone ran through the same issue.