added missing '['

This commit is contained in:
AJ ONeal 2015-01-02 12:30:47 -07:00
parent 0ecda410e7
commit 11650364cf
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ if [ -z "$(which fail2ban-server | grep fail2ban)" ]; then
fi fi
# git, wget, curl, build-essential # git, wget, curl, build-essential
if [ -z "$(which pkg-config | grep pkg-config)" ] || -z "$(which git | grep git)" ] || [ -z "$(which wget | grep wget)" ] || [ -z "$(which curl | grep curl)" ] || [ -z "$(which gcc | grep gcc)" ] || [ -z "$(which rsync | grep rsync)" ] if [ -z "$(which pkg-config | grep pkg-config)" ] || [ -z "$(which git | grep git)" ] || [ -z "$(which wget | grep wget)" ] || [ -z "$(which curl | grep curl)" ] || [ -z "$(which gcc | grep gcc)" ] || [ -z "$(which rsync | grep rsync)" ]
then then
echo "installing git, wget, curl, build-essential, rsync, pkg-config..." echo "installing git, wget, curl, build-essential, rsync, pkg-config..."
sudo bash -c "apt-get install -qq -y git wget curl build-essential rsync pkg-config < /dev/null" > /dev/null 2>/dev/null sudo bash -c "apt-get install -qq -y git wget curl build-essential rsync pkg-config < /dev/null" > /dev/null 2>/dev/null