From 689e349b84090eef53ca0ad86a01a5492f56e980 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 16 Oct 2024 16:00:00 +0200 Subject: [PATCH] Explicitly install postgresql@14 with brew Installing just "postgresql" results in an annoying warning about the formula having been renamed to "postgresql@14". --- scripts/ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/install.sh b/scripts/ci/install.sh index 41166e4fc..2f4a11aed 100755 --- a/scripts/ci/install.sh +++ b/scripts/ci/install.sh @@ -56,7 +56,7 @@ case "$(uname)" in Darwin) case "${SOCI_CI_BACKEND}" in postgresql) - brew install postgresql + brew install postgresql@14 ;; esac ;;