use '%b' argument when printing deferred errors (#12786)
Ilya Mashchenko committed
May 2, 2022 at 10:56 UTC
df5efa188773103448c59ae6e25504166360041e
1 file changed
+2
-2
netdata-installer.sh
+2
-2
@@ -96,8 +96,8 @@ fi
96
print_deferred_errors() {
97
if [ -n "${SAVED_WARNINGS}" ]; then
98
printf >&2 "\n"
99
- printf >&2 "%s\n" "The following warnings and non-fatal errors were encountered during the installation process:"
100
- printf >&2 "%s\n" "${SAVED_WARNINGS}"
99
+ printf >&2 "%b\n" "The following warnings and non-fatal errors were encountered during the installation process:"
100
+ printf >&2 "%b\n" "${SAVED_WARNINGS}"
101
printf >&2 "\n"
102
fi
103
}