From 5d608d4b0bfe5649a2a801b2f4cd58b63e29fb12 Mon Sep 17 00:00:00 2001 From: Rob Whittaker Date: Sun, 28 Aug 2022 10:13:49 +0100 Subject: [PATCH] Fix the PostgreSQL Homebrew definition Before, we used the simple `postgres` alias to install PostgreSQL with Homebrew. Homebrew has removed this alias and needs us to define the required version. We fixed the definition to use the full formula name and define a version. --- mac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mac b/mac index 86923164a..5211cb07d 100644 --- a/mac +++ b/mac @@ -138,7 +138,7 @@ brew "yarn" cask "gpg-suite-no-mail" # Databases -brew "postgres", restart_service: :changed +brew "postgresql@14", restart_service: :changed brew "redis", restart_service: :changed EOF