From a7cf8f0c6a520ce97d854f114b4ec1bc4322ccbc Mon Sep 17 00:00:00 2001 From: J Blackman Date: Tue, 17 Jan 2023 10:48:34 +1100 Subject: [PATCH] Adding release name to the build key output (if provided). (#12201) --- src/main/cli/cli.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/cli/cli.c b/src/main/cli/cli.c index f085c5849..95208d7c5 100644 --- a/src/main/cli/cli.c +++ b/src/main/cli/cli.c @@ -4814,7 +4814,11 @@ static void cliStatus(const char *cmdName, char *cmdline) #endif #ifdef BUILD_KEY - cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY)); + cliPrintf("BUILD KEY: %s", STR(BUILD_KEY)); +#ifdef RELEASE_NAME + cliPrintf(" (%s)", STR(RELEASE_NAME)); +#endif + cliPrintLinefeed(); #endif // Uptime and wall clock -- 2.11.4.GIT