From a63e9a5ba1d69c381edcd5ac610f83e612406f52 Mon Sep 17 00:00:00 2001 From: Troy Lindsay Date: Tue, 31 Oct 2017 09:05:31 -0500 Subject: [PATCH] Add brew install curl --with-openssl for https://github.com/PowerShell/PowerShell/issues/2211 --- build/travis/install-dependencies.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/travis/install-dependencies.sh b/build/travis/install-dependencies.sh index 42d01dcc..4078c026 100644 --- a/build/travis/install-dependencies.sh +++ b/build/travis/install-dependencies.sh @@ -192,6 +192,8 @@ case "$OSTYPE" in if hash brew 2>/dev/null; then brew update > /dev/null + brew install curl --with-openssl + brew tap caskroom/cask else echo "ERROR: Homebrew is not installed! Aborting..." >&2