CI: fix install errors on macOS

Error: nss 3.48 is already installed
To upgrade to 3.52, run `brew upgrade nss`.
Error: nspr 4.24 is already installed
To upgrade to 4.25, run `brew upgrade nspr`.
This commit is contained in:
Jan Beich 2020-05-21 11:56:41 +00:00 коммит произвёл Henry Corrigan-Gibbs
Родитель c70dfd6ab2
Коммит bfff803062
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,8 @@ before_install:
sudo pkg install -y scons msgpack nss;
elif [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
brew update;
brew install nss nspr scons msgpack;
brew upgrade nspr nss;
brew install scons msgpack;
fi
addons: