feat(mac): explicitly add & link libpq
This is needed for using psql without installing postgres.
This commit is contained in:
parent
311fdd11f6
commit
55706b6c30
3 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue