diff --git a/install-mac.sh b/install-mac.sh index f979750..1cda612 100755 --- a/install-mac.sh +++ b/install-mac.sh @@ -28,6 +28,9 @@ brew bundle --file ${DOTFILES}/macos/Brewfile # gnupg is not really needed but marked as a dependency for pass brew unlink gnupg +# Link libpq to access psql +brew link --force libpq + flutter --disable-analytics # Properly symlink openjdk java diff --git a/macos/Brewfile b/macos/Brewfile index a1a6e5f..6ae45ea 100644 --- a/macos/Brewfile +++ b/macos/Brewfile @@ -26,6 +26,7 @@ brew 'poppler' # PDF manipulation (needed for some projects) brew 'qpdf' # PDF manipulation (needed for some projects) brew 'rename' brew 'gh' # GitHub CLI +brew 'libpq' # For psql to use laravel squash migrations etc # Infrastructure tools brew 'awscli' diff --git a/macos/bin/pkg-update b/macos/bin/pkg-update index 080a4af..7d9bf2e 100755 --- a/macos/bin/pkg-update +++ b/macos/bin/pkg-update @@ -5,6 +5,10 @@ brew update brew upgrade # Fixes gnupg link conflicts with GPGSuite brew unlink gnupg + +# Link libpq to access psql +brew link --force libpq + # Fix corepack / node update issues corepack disable corepack enable