From 59b7d46809af52d439bf8bf054681054226cd778 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 5 Jan 2019 04:51:20 -0700 Subject: [PATCH] fixed error: echo should be sed --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index ced7189..588cb97 100644 --- a/setup.sh +++ b/setup.sh @@ -537,8 +537,8 @@ sed -i -e "s%${tag_sslkey}%${KeyPath}%" "${configPath}/${file_ssl}" # process mozModern SSL configuration echo "updating ${warn}${configPath}/${file_mozmodern}${norm}" -echo -i -e "s%${tag_dhparam}%${DHPath}%" "${configPath}/${file_mozmodern}" -echo -i -e "s%${tag_cachain}%${CAChainPath}%" "${configPath}/${file_mozmodern}" +sed -i -e "s%${tag_dhparam}%${DHPath}%" "${configPath}/${file_mozmodern}" +sed -i -e "s%${tag_cachain}%${CAChainPath}%" "${configPath}/${file_mozmodern}"