From 6ad48d283d8cedbff1dd4986ca5f6f865b97852b Mon Sep 17 00:00:00 2001 From: gilbN <24592972+gilbN@users.noreply.github.com> Date: Sun, 28 Feb 2021 21:32:31 +0100 Subject: [PATCH] echo changes --- qbittorrent/root/etc/cont-init.d/98-themepark | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/qbittorrent/root/etc/cont-init.d/98-themepark b/qbittorrent/root/etc/cont-init.d/98-themepark index bfdf8a6f..f7ceeeb5 100644 --- a/qbittorrent/root/etc/cont-init.d/98-themepark +++ b/qbittorrent/root/etc/cont-init.d/98-themepark @@ -44,17 +44,17 @@ fi # Adding stylesheets if ! grep -q "${TP_DOMAIN}" /themepark/public/index.html; then - echo '----------------------------------------------' - echo '| Adding the stylesheet to public index.html |' - echo '----------------------------------------------' + echo '---------------------------------------------------------' + echo '| Adding the stylesheet to /themepark/public/index.html |' + echo '---------------------------------------------------------' sed -i "s/<\/head>/<\/head> /g" /themepark/public/index.html printf 'Stylesheet set to %s on public index.html\n' "${TP_THEME}" fi if ! grep -q "${TP_DOMAIN}" /themepark/private/index.html; then - echo '-----------------------------------------------' - echo '| Adding the stylesheet to private index.html |' - echo '-----------------------------------------------' + echo '----------------------------------------------------------' + echo '| Adding the stylesheet to /themepark/private/index.html |' + echo '----------------------------------------------------------' sed -i "s/<\/head>/<\/head> /g" /themepark/private/index.html printf 'Stylesheet set to %s on private index.html\n' "${TP_THEME}" fi