Created
February 21, 2019 23:51
-
-
Save kerasai/774a6881270e1e3cce0129ffdfda8aae to your computer and use it in GitHub Desktop.
Box PHAR Compilation
This file contains hidden or 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
#!/usr/bin/bash | |
sudo mkdir -p /opt/box | |
cd /opt/box | |
sudo curl -OL https://github.com/humbug/box/releases/download/3.4.0/box.phar | |
sudo chmod +x box.phar | |
sudo mv box.phar box-3.4.0.phar | |
sudo update-alternatives --install /usr/bin/box box /opt/box/box-3.4.0.phar 10 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment