Commit 116d12317ccd9ee5523da8492578395607767e97

Authored by mj
1 parent 964c49949b
Exists in master and in 2 other branches 02-merge, dev

[FIX] install.sh

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -12,7 +12,7 @@
12 12  
13 13 set -e
14 14  
15   -if [ -d /proc/vz ] && [ ! -d /proc/vz/beancounter ]; then
  15 +if [ -d /proc/vz ] && [ ! -d /proc/vz/beancounter ] && [ ! $DONTINSTALL ]; then
16 16 apt-get -yq install curl dialog git nano zsh
17 17 else
18 18 if [ "$UID" != "0" ]; then CMD_PREFIX="sudo"; else CMD_PREFIX=""; fi