From 93ea6b2db103e6a26668152a802a8117fb580d7a Mon Sep 17 00:00:00 2001 From: "Chase D. Wright" Date: Wed, 23 Jan 2019 17:01:36 -0600 Subject: [PATCH] Add log location for failures, warn about dependency and make taking a while --- guac-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guac-install.sh b/guac-install.sh index 74c56f0..68cdc1b 100644 --- a/guac-install.sh +++ b/guac-install.sh @@ -115,7 +115,7 @@ fi #TOMCAT="" # Install features -echo -e "${BLUE}Installing dependencies (This might take a few minutes...)${NC}" +echo -e "${BLUE}Installing dependencies. This might take a few minutes...${NC}" apt-get -y install build-essential libcairo2-dev ${JPEGTURBO} ${LIBPNG} libossp-uuid-dev libavcodec-dev libavutil-dev \ libswscale-dev libfreerdp-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libvncserver-dev libpulse-dev libssl-dev \ @@ -184,7 +184,7 @@ else echo -e "${GREEN}OK${NC}" fi -echo -e "${BLUE}Running Make...${NC}" +echo -e "${BLUE}Running Make. This might take a few minutes...${NC}" make &>> ${LOG} if [ $? -ne 0 ]; then echo -e "${RED}Failed. See ${LOG}${NC}"