From f9f5cf5eb9233c4ded856ab0edc53abb2f5cb4ad Mon Sep 17 00:00:00 2001 From: Botspot Date: Sat, 3 Oct 2020 13:33:15 -0500 Subject: [PATCH] double backslashes to remove shellcheck fuss --- apps/template/install | 2 +- apps/template/uninstall | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/template/install b/apps/template/install index 57189f6..15ff546 100755 --- a/apps/template/install +++ b/apps/template/install @@ -2,7 +2,7 @@ DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" function error { - echo -e "\e[31m$1\e[39m" + echo -e "\\e[31m$1\\e[39m" exit 1 } diff --git a/apps/template/uninstall b/apps/template/uninstall index b62479a..77297e5 100755 --- a/apps/template/uninstall +++ b/apps/template/uninstall @@ -2,7 +2,7 @@ DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" function error { - echo -e "\e[31m$1\e[39m" + echo -e "\\e[31m$1\\e[39m" exit 1 }