summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-05-02 10:56:37 +0300
committerGitHub <noreply@github.com>2022-05-02 10:56:37 +0300
commitdf5efa188773103448c59ae6e25504166360041e (patch)
tree9f7f029998131291c7ffd7be6237b6c9d0fa48bd /netdata-installer.sh
parent94af0da9a3603e9f82243bd1ad85164dee525863 (diff)
use '%b' argument when printing deferred errors (#12786)
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index 79565b510a..5bd2e94008 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -96,8 +96,8 @@ fi
print_deferred_errors() {
if [ -n "${SAVED_WARNINGS}" ]; then
printf >&2 "\n"
- printf >&2 "%s\n" "The following warnings and non-fatal errors were encountered during the installation process:"
- printf >&2 "%s\n" "${SAVED_WARNINGS}"
+ printf >&2 "%b\n" "The following warnings and non-fatal errors were encountered during the installation process:"
+ printf >&2 "%b\n" "${SAVED_WARNINGS}"
printf >&2 "\n"
fi
}