Skip to content

Commit

Permalink
Don't autoupgrade homebrew formula in install-native-dependencies.sh
Browse files Browse the repository at this point in the history
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'
  • Loading branch information
akoeplinger committed Oct 12, 2020
1 parent b8a92e5 commit a2cafbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/install-native-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2cafbd

Please sign in to comment.