We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab97b3 commit 45bf77cCopy full SHA for 45bf77c
scripts/ubuntu/essentials.sh
@@ -1,8 +1,10 @@
1
-# Tools you can't live without
2
-apt-get update
3
-apt-get install -y build-essential git vim
4
-
5
-# I can't stand emacs
6
-echo 'set -o vi' | sudo tee /etc/profile.d/vishell.sh
+if [ ! -e ".provisioned" ]; then
+ # Tools you can't live without
+ apt-get update
+ apt-get install -y build-essential git vim
7
+ # I can't stand emacs
+ echo 'set -o vi' | sudo tee /etc/profile.d/vishell.sh
8
9
+ touch .provisioned
10
+fi
0 commit comments