mac/zsh: Add upgrade script for all installed pkgs

This commit is contained in:
Saibotk 2022-08-15 01:10:48 +02:00
parent b4ba435ae5
commit aa2b76560d
Signed by: saibotk
GPG key ID: 67585F0065E261D5

28
macos/bin/pkg-update Executable file
View file

@ -0,0 +1,28 @@
#!/bin/sh
echo "\n > Upgrading brew packages...\n"
brew update
brew upgrade
# Fixes gnupg link conflicts with GPGSuite
brew unlink gnupg
echo "\n > Upgrading pecl packages...\n"
# Paths to openssl to build pecl extensions (swoole)
export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib"
export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig"
pecl upgrade
echo "\n > Upgrading global composer packages...\n"
composer global upgrade
echo "\n > Upgrading nvim packages...\n"
nvim +PlugUpgrade +PlugUpdate +qall
echo "\n > Upgrading znap plugins...\n"
znap-update
echo "\n"
echo "\n > Done 🚀 enjoy your day!\n"