Skip to content

Commit

Permalink
Adding release name to the build key output (if provided). (#12201)
Browse files Browse the repository at this point in the history
  • Loading branch information
blckmn committed Jan 16, 2023
1 parent d96586d commit a7cf8f0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/cli/cli.c
Expand Up @@ -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
Expand Down

0 comments on commit a7cf8f0

Please sign in to comment.