From 0b943dc36ede0335e1077332663a4f26d2f8c8d4 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Wed, 4 Jun 2014 15:39:36 +0530 Subject: [PATCH] Fix variable name --- src/modules/system/install/ee_mod_install_nginx.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/system/install/ee_mod_install_nginx.sh b/src/modules/system/install/ee_mod_install_nginx.sh index fc29bdcb..b7c7c5c8 100644 --- a/src/modules/system/install/ee_mod_install_nginx.sh +++ b/src/modules/system/install/ee_mod_install_nginx.sh @@ -2,6 +2,7 @@ function ee_mod_install_nginx() { - ee_lib_echo "Installing $NGINX_PACKAGE, please wait..." - $EE_APT_GET install $NGINX_PACKAGE || ee_lib_error "Unable to install $NGINX_PACKAGE, exit status = " $? + ee_lib_echo "Installing $EE_NGINX_PACKAGE, please wait..." + $EE_APT_GET install $EE_NGINX_PACKAGE \ + || ee_lib_error "Unable to install $EE_NGINX_PACKAGE, exit status = " $? }