From 8a8925f67046f5dd2f6007c7c0a92914407b8741 Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Fri, 6 Jun 2014 17:26:04 +0530 Subject: [PATCH] Fix install.sh --- bin/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.sh b/bin/install.sh index 74f924bb..db85d797 100644 --- a/bin/install.sh +++ b/bin/install.sh @@ -88,7 +88,7 @@ elif [ "$EE_LINUX_DISTRO" == "Debian" ]; then ee_lib_package_check graphviz python-software-properties fi -if [ ! -x /usr/bin/tee ] || [ ! -x /bin/ed ] || [ ! -x /usr/bin/bc ] || [ ! -x /usr/bin/wget ] || [ ! -x /usr/bin/curl ] || [ ! -x /bin/tar ] || [ ! -x /usr/bin/git ] || [ -n $EE_PACKAGE_NAME ]; then +if [ ! -x /usr/bin/tee ] || [ ! -x /bin/ed ] || [ ! -x /usr/bin/bc ] || [ ! -x /usr/bin/wget ] || [ ! -x /usr/bin/curl ] || [ ! -x /bin/tar ] || [ ! -x /usr/bin/git ] || [ ! -z $EE_PACKAGE_NAME ]; then ee_lib_echo "Installing required packages" | tee -ai $EE_INSTALL_LOG apt-get -y install coreutils ed bc wget curl tar git-core $EE_PACKAGE_NAME || ee_lib_error "Unable to install required packages, exit status = " $? fi