From 335cf829573fa35f56a92effc92a570f0d567825 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 14 Jun 2019 11:53:17 -0500 Subject: [PATCH] remove color from error message --- plexupdate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexupdate.sh b/plexupdate.sh index 88ee4eb..5b03f3a 100755 --- a/plexupdate.sh +++ b/plexupdate.sh @@ -494,7 +494,7 @@ if [ "${AUTOINSTALL}" = "yes" ]; then # Clarify why this failed, so user won't be left in the dark error "Failed to install update. Command '${DISTRO_INSTALL} "${DOWNLOADDIR}/${FILENAME}"' returned error code ${RET}" if [ "${DISTRO}" = "synology" -a ${RET} -eq 1 ]; then - echo -e "On Synology devices, you need to add Plex's public key to Package Center. If you have not done so, follow the instructions at \033[0;34mhttps://support.plex.tv/articles/205165858-how-to-add-plex-s-package-signing-public-key-to-synology-nas-package-center/\033[0m" + error "On Synology devices, you need to add Plex's public key to Package Center. If you have not done so, follow the instructions at https://support.plex.tv/articles/205165858-how-to-add-plex-s-package-signing-public-key-to-synology-nas-package-center/" fi exit ${RET} fi