Skip to content

Commit d1561f4

Browse files
authored
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'
1 parent b8a92e5 commit d1561f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/install-native-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ "$1" = "Linux" ]; then
3131
elif [ "$1" = "OSX" ] || [ "$1" = "tvOS" ] || [ "$1" = "iOS" ]; then
3232
engdir=$(dirname "${BASH_SOURCE[0]}")
3333
brew update --preinstall
34-
brew bundle --no-lock --file "${engdir}/Brewfile"
34+
brew bundle --no-upgrade --no-lock --file "${engdir}/Brewfile"
3535
if [ "$?" != "0" ]; then
3636
exit 1;
3737
fi

0 commit comments

Comments
 (0)