0

I'm integrating fastlane to streamline the app submission process. When I enter fastlane init and my apple ID in the terminal, I get an SSL error SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed. I have tried various ways of upgrading OpenSSL including this post to no avail. Is there a way to upgrade OpenSSL so I can use fastlane? Thank you.

mir
  • 183
  • 1
  • 12
  • Also see [Brew refusing to link openssl](http://stackoverflow.com/q/38670295), [Update OpenSSL on OS X with Homebrew](http://stackoverflow.com/q/15185661), [How to install latest version of openssl Mac OS X El Capitan](http://stackoverflow.com/q/35129977), [How to upgrade OpenSSL in OS X?](http://apple.stackexchange.com/q/126830), [Openssl installation using HomeBrew fails](http://superuser.com/q/486389), etc. – jww Feb 13 '17 at 03:03

1 Answers1

3

You can use the pre-bundled version of fastlane from download.fastlane.tools that bundles the latest OpenSSL version with it. Alternatively you can also use the homebrew version using brew cask install fastlane

KrauseFx
  • 11,551
  • 7
  • 46
  • 53