mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 14:22:19 +02:00
11 lines
228 B
Bash
11 lines
228 B
Bash
if [ ! -e ".provisioned" ]; then
|
|
# Tools you can't live without
|
|
apt-get update
|
|
apt-get install -y build-essential git vim
|
|
|
|
# I can't stand emacs
|
|
echo 'set -o vi' | sudo tee /etc/profile.d/vishell.sh
|
|
|
|
touch .provisioned
|
|
fi
|