Removed extra printed `\n` (#8325)
When running the installation script, a lot of `\n` got printed before the return status `[OK]` or `[ERROR]`.
Jonathan Barda committed
Mar 6, 2020 at 04:31 UTC
9b2ee02824c4ecec7ee3dab4ed171d8f52949a90
1 file changed
+1
-1
packaging/installer/functions.sh
+1
-1
@@ -264,7 +264,7 @@ run() {
264
265
printf >&2 "%s" "${info_console}${TPUT_BOLD}${TPUT_YELLOW}"
266
escaped_print >&2 "${@}"
267
- printf >&2 "%s" "${TPUT_RESET}\n"
267
+ printf >&2 "%s" "${TPUT_RESET}"
268
269
"${@}"
270