From 0c8a4b731abcaff19f662cb31997477ecdd6c649 Mon Sep 17 00:00:00 2001 From: v-kaywon Date: Fri, 11 Aug 2017 11:05:11 -0700 Subject: [PATCH] fix msodbc installation with homebrew in setup_env_unix.sh --- test/Performance/setup_env_unix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Performance/setup_env_unix.sh b/test/Performance/setup_env_unix.sh index e8a139dc..69caebb6 100644 --- a/test/Performance/setup_env_unix.sh +++ b/test/Performance/setup_env_unix.sh @@ -86,7 +86,7 @@ elif [ $PLATFORM = "Sierra" ]; then echo "Installing MSODBCSQL..." brew tap microsoft/msodbcsql https://github.com/Microsoft/homebrew-msodbcsql >> env_setup.log 2>&1 brew update >> env_setup.log 2>&1 - yes | ACCEPT_EULA=Y brew install msodbcsql >> env_setup.log 2>&1 + yes | ACCEPT_EULA=Y brew install --no-sandbox msodbcsql >> env_setup.log 2>&1 echo "OK" yes | brew install autoconf >> env_setup.log 2>&1 echo "Installing pyodbc..."