From d1561f45e85a4c245044964dc71b5c46b56323b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Mon, 12 Oct 2020 13:08:36 +0200 Subject: [PATCH] Don't autoupgrade homebrew formula in install-native-dependencies.sh (#43299) Should workaround an issue we're seeing on AzDO while upgrading openssl@1.1 1.1.1g -> 1.1.1h: 'Error: Not a directory @ dir_s_rmdir - /usr/local/Cellar/openssl' --- eng/install-native-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/install-native-dependencies.sh b/eng/install-native-dependencies.sh index 31a61e9..57896e8 100755 --- a/eng/install-native-dependencies.sh +++ b/eng/install-native-dependencies.sh @@ -31,7 +31,7 @@ if [ "$1" = "Linux" ]; then elif [ "$1" = "OSX" ] || [ "$1" = "tvOS" ] || [ "$1" = "iOS" ]; then engdir=$(dirname "${BASH_SOURCE[0]}") brew update --preinstall - brew bundle --no-lock --file "${engdir}/Brewfile" + brew bundle --no-upgrade --no-lock --file "${engdir}/Brewfile" if [ "$?" != "0" ]; then exit 1; fi -- 2.7.4