Double-escape \ so that the config file is generated correctly
Thanks @lukebakken! Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
This commit is contained in:
parent
7bfbdba2df
commit
382565c507
|
|
@ -182,14 +182,14 @@ $(if $(RABBITMQ_NODE_PORT), {tcp_listeners$(COMMA) [$(shell echo "$$((61613
|
|||
{lager, [
|
||||
{colors, [
|
||||
%% https://misc.flogisoft.com/bash/tip_colors_and_formatting
|
||||
{debug, "\e[0;34m" },
|
||||
{info, "\e[1;37m" },
|
||||
{notice, "\e[1;36m" },
|
||||
{warning, "\e[1;33m" },
|
||||
{error, "\e[1;31m" },
|
||||
{critical, "\e[1;35m" },
|
||||
{alert, "\e[1;44m" },
|
||||
{emergency, "\e[1;41m" }
|
||||
{debug, "\\\e[0;34m" },
|
||||
{info, "\\\e[1;37m" },
|
||||
{notice, "\\\e[1;36m" },
|
||||
{warning, "\\\e[1;33m" },
|
||||
{error, "\\\e[1;31m" },
|
||||
{critical, "\\\e[1;35m" },
|
||||
{alert, "\\\e[1;44m" },
|
||||
{emergency, "\\\e[1;41m" }
|
||||
]}
|
||||
]}
|
||||
].
|
||||
|
|
@ -232,14 +232,14 @@ define test_rabbitmq_config_with_tls
|
|||
{lager, [
|
||||
{colors, [
|
||||
%% https://misc.flogisoft.com/bash/tip_colors_and_formatting
|
||||
{debug, "\e[0;34m" },
|
||||
{info, "\e[1;37m" },
|
||||
{notice, "\e[1;36m" },
|
||||
{warning, "\e[1;33m" },
|
||||
{error, "\e[1;31m" },
|
||||
{critical, "\e[1;35m" },
|
||||
{alert, "\e[1;44m" },
|
||||
{emergency, "\e[1;41m" }
|
||||
{debug, "\\\e[0;34m" },
|
||||
{info, "\\\e[1;37m" },
|
||||
{notice, "\\\e[1;36m" },
|
||||
{warning, "\\\e[1;33m" },
|
||||
{error, "\\\e[1;31m" },
|
||||
{critical, "\\\e[1;35m" },
|
||||
{alert, "\\\e[1;44m" },
|
||||
{emergency, "\\\e[1;41m" }
|
||||
]}
|
||||
]}
|
||||
].
|
||||
|
|
|
|||
Loading…
Reference in New Issue