Fix bug in rendering confirmation messages on certain platforms.

This commit is contained in:
Marco Vermeulen
2016-12-26 23:15:07 +00:00
parent 8543191f63
commit 4e6ea2aad6

View File

@@ -96,6 +96,6 @@ function __sdkman_echo_confirm {
if [[ "$sdkman_colour_enable" == 'false' ]]; then
echo -n "$1"
else
echo -n "\033[1;33m$1\033[0m"
echo -e -n "\033[1;33m$1\033[0m"
fi
}