Skip to content

Commit 85be199

Browse files
committed
VMConsole: add build number to uname command
1 parent 72d778f commit 85be199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm/vmconsole.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ void VMConsole::Process(const std::string &text, bool echo)
311311
if (command == "uname")
312312
{
313313
if (params.size() > 0)
314-
Report("VM " + vm->version + " " + vm->version_state + " (" + vm->Architecture + " " + vm->Bits + ")");
314+
Report("VM " + vm->version + " " + vm->version_state + " (" + vm->Architecture + " " + vm->Bits + "), build " + vm->version_rev);
315315
else
316316
Report("VM");
317317
consoleresult.ready = false;

0 commit comments

Comments
 (0)