We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58656bc commit dca0f56Copy full SHA for dca0f56
.ci/travis-before-install.sh
@@ -36,12 +36,10 @@ if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
36
pyenv rehash
37
38
# Install PostgreSQL
39
- if brew ls --versions postgresql@${PGVERSION} > /dev/null; then
40
- brew upgrade postgresql@${PGVERSION}
41
- else
42
- brew install postgresql@${PGVERSION}
+ if brew ls --versions postgresql > /dev/null; then
+ brew remove --force --ignore-dependencies postgresql
43
fi
44
45
- brew cleanup postgresql@${PGVERSION}
+ brew install postgresql@${PGVERSION}
46
brew services start postgresql@${PGVERSION}
47
0 commit comments