Changeset View
Changeset View
Standalone View
Standalone View
scripts/install/install_ubuntu.sh
| Show First 20 Lines • Show All 87 Lines • ▼ Show 20 Lines | sudo apt-get install \ | ||||
| || failed | || failed | ||||
| echo "Enabling mod_rewrite in Apache..." | echo "Enabling mod_rewrite in Apache..." | ||||
| echo | echo | ||||
| sudo a2enmod rewrite || failed | sudo a2enmod rewrite || failed | ||||
| echo "Downloading Phabricator and dependencies..." | echo "Downloading Phabricator and dependencies..." | ||||
| echo | echo | ||||
| if [ ! -e libphutil ] | |||||
| then | |||||
| git clone https://github.com/phacility/libphutil.git | |||||
| else | |||||
| (cd libphutil && git pull --rebase) | |||||
| fi | |||||
| if [ ! -e arcanist ] | if [ ! -e arcanist ] | ||||
| then | then | ||||
| git clone https://github.com/phacility/arcanist.git | git clone https://github.com/phacility/arcanist.git | ||||
| else | else | ||||
| (cd arcanist && git pull --rebase) | (cd arcanist && git pull --rebase) | ||||
| fi | fi | ||||
| Show All 14 Lines | |||||