Created
June 3, 2014 19:27
-
-
Save wiltonbsilva/f482ea8e482dc8c9bedf to your computer and use it in GitHub Desktop.
Shell script to install the Play Framework
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
cd ~/Downloads/ | |
wget http://downloads.typesafe.com/play/2.2.3/play-2.2.3.zip?_ga=1.165836478.1853295521.1400617207 | |
unzip -e ~/Downloads/play-2.2.3.zip?_ga=1.165836478.1853295521.1400617207 | |
sudo mkdir -p /opt/scala/play/ | |
sudo mv ~/Downloads/play-2.2.3 /opt/scala/play/ | |
cd /opt/scala/play/ | |
sudo ln -s play-2.2.3 play-framework |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment