Last active
September 28, 2023 16:21
-
-
Save evagoras/cf4ffea761958fdbe2c9ebb58572f316 to your computer and use it in GitHub Desktop.
Upgrading CommandBox on a Mac using Homebrew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# grant write permissions to the local user | |
sudo chgrp -R admin /usr/local | |
sudo chmod -R g+w /usr/local | |
# update brew | |
brew update | |
# upgrade CommandBox | |
brew upgrade commandbox | |
# Ortus Tap | |
brew tap ortus-solutions/boxtap | |
brew tap-pin ortus-solutions/boxtap | |
# install the latest CommandBox | |
brew install --devel commandbox | |
# delete existing 'box' binary file | |
rm '/usr/local/bin/box' | |
# switch to the latest version | |
brew switch commandbox 3.5.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://evagoras.com/2017/02/14/upgrading-commandbox-on-a-mac-using-homebrew/