From 0e84c903e9563917b7dae0b5a4e14400fd3673bf Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 25 May 2017 11:50:45 -0600 Subject: [PATCH] typo fix --- setup-deps-ubuntu.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-deps-ubuntu.bash b/setup-deps-ubuntu.bash index 07f774b..1185389 100644 --- a/setup-deps-ubuntu.bash +++ b/setup-deps-ubuntu.bash @@ -29,7 +29,7 @@ sudo bash -c "apt-get update -qq -y < /dev/null" > /dev/null #fi # git, wget, curl, build-essential -if [ -z "$(type -p pkg-config)" ] || [ -z "$(type -p git)" ] || [ -z "$(type -p wget)" ] || [ -z "$(type -p curl)" ] || [ -z "$(type -p gcc)" ] || [ -z "$(type -p rsync)" || [ -z "$(type -p python)" ] +if [ -z "$(type -p pkg-config)" ] || [ -z "$(type -p git)" ] || [ -z "$(type -p wget)" ] || [ -z "$(type -p curl)" ] || [ -z "$(type -p gcc)" ] || [ -z "$(type -p rsync)" ] || [ -z "$(type -p python)" ] then echo "installing git, wget, curl, build-essential, rsync, pkg-config, python..." sudo bash -c "apt-get install -qq -y git wget curl build-essential rsync pkg-config python < /dev/null" > /dev/null 2>/dev/null