Working on a Self-Service Homebrew option.
Trying to find a way to run brew update, upgrade, and cleanup in the install script not as sudo. See script bellow.
#!/bin/zsh
# Install Apple Xcode CLT
rm -rf /Library/Developer/CommandLineTools
xcode-select --install
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Find a way to run bellow without sudo
# brew update
# brew upgrade
# brew cleanup
exit 0



