Saibotk
d0f52a2b1c
Fixes annoying pecl update issues & swoole build failures by using the prebuilt tap. This also properly manages updates & enables the extensions via files in conf.d instead. Very clean. And it finally properly installs all extensions for all php versions, pecl has issues with properly installing for other php versions.
22 lines
451 B
Bash
Executable file
22 lines
451 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "\n > Upgrading brew packages...\n"
|
|
brew update
|
|
brew upgrade
|
|
# Fixes gnupg link conflicts with GPGSuite
|
|
brew unlink gnupg
|
|
|
|
echo "\n > Upgrading global composer packages...\n"
|
|
composer global upgrade
|
|
|
|
echo "\n > Running valet install...\n"
|
|
valet install
|
|
|
|
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"
|