From 89296ad5879e0e72a00bea144c28f8728a56fc67 Mon Sep 17 00:00:00 2001 From: fro Date: Fri, 27 Jun 2025 11:55:06 -0500 Subject: [PATCH] / sed replace w/ variable https://askubuntu.com/questions/76808/how-do-i-use-variables-in-a-sed-command --- scripts/99_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index 52011ee..bc17c43 100755 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -320,7 +320,7 @@ if [ ${operation} == "dots" ] ; then file_name=user.js file_path=${ffpd} deploy_file "${dots_trg}/firefox/${file_name}" "${file_path}/${file_name}" - sed -i -e 's/{HOSTNAME}/${HOSTNAME}/g' "${file_path}/${file_name}" + sed -i -e "s/{HOSTNAME}/${HOSTNAME}/g" "${file_path}/${file_name}" file_name=userChrome.css file_path=${ffpd}/chrome