This is an automated email from the ASF dual-hosted git repository.
phrocker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/master by this push:
new 6cae874 MINIFICPP-783: Fix bootstrap curl install on Darwin
6cae874 is described below
commit 6cae874b73c8ac84a762a29c3aed46ba966932f9
Author: Kevin Doran <[email protected]>
AuthorDate: Thu Mar 21 09:55:17 2019 -0400
MINIFICPP-783: Fix bootstrap curl install on Darwin
This closes #519.
Signed-off-by: Marc Parisi <[email protected]>
---
darwin.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/darwin.sh b/darwin.sh
index 086a105..91a3139 100644
--- a/darwin.sh
+++ b/darwin.sh
@@ -83,7 +83,7 @@ build_deps(){
if [ "$KEY" = "$option" ]; then
FOUND_VALUE="$VALUE"
if [ "$FOUND_VALUE" = "libcurl" ]; then
- brew install curl --with-openssl
+ brew install curl
elif [ "$FOUND_VALUE" = "libpcap" ]; then
INSTALLED+=("libpcap")
elif [ "$FOUND_VALUE" = "openssl" ]; then