Skip to content

Commit

Permalink
Work around OSX native dependency install issue (dotnet/coreclr#21913)
Browse files Browse the repository at this point in the history
"brew update" before "brew install"
To work around https://github.com/dotnet/coreclr/issues/21910


Commit migrated from dotnet/coreclr@e6504ac
  • Loading branch information
sbomer authored Jan 10, 2019
1 parent 2645dc8 commit a71b0a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eng/install-native-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ if [ "$1" = "Linux" ]; then
exit 1;
fi
elif [ "$1" = "OSX" ]; then
brew update
if [ "$?" != "0" ]; then
exit 1;
fi
brew install icu4c openssl
if [ "$?" != "0" ]; then
exit 1;
fi
brew link --force icu4c
if [ "$?" != "0"]; then
if [ "$?" != "0" ]; then
exit 1;
fi
else
Expand Down

0 comments on commit a71b0a6

Please sign in to comment.