From c503db8e4da585de593b3e7178d6a9a6b0afa074 Mon Sep 17 00:00:00 2001 From: KongQun Yang Date: Mon, 13 Aug 2018 14:50:31 -0700 Subject: [PATCH] Add instructions for missing curl CA bundle on mac Change-Id: I39f36cb08cd816a0373713b21ed1f8bad0d86124 --- docs/source/build_instructions.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/source/build_instructions.md b/docs/source/build_instructions.md index e3cff00ca8..b0be3055ab 100644 --- a/docs/source/build_instructions.md +++ b/docs/source/build_instructions.md @@ -276,12 +276,12 @@ sudo zypper in git python python-xml git curl gcc-c++ tar ### Xcode license agreement -If you're getting the error +If you are getting the error > Agreeing to the Xcode/iOS license requires admin privileges, please re-run as > root via sudo. -the Xcode license hasn't been accepted yet which (contrary to the message) any +the Xcode license has not been accepted yet which (contrary to the message) any user can do by running: ```shell @@ -294,6 +294,19 @@ Only accepting for all users of the machine requires root: $ sudo xcodebuild -license ``` +### Missing curl CA bundle + +If you are getting the error + +> gyp: Call to 'config/mac/find_curl_ca_bundle.sh' returned exit status 1 ... + +curl CA bundle is not able to be located. Installing curl with openssl should +resolve the issue: + +```shell +$ brew install curl --with-openssl +``` + ## Contributing If you have improvements or fixes, we would love to have your contributions.