From 3fdd5a86c98c8c05dd869df0684122257fe476b0 Mon Sep 17 00:00:00 2001 From: xiongziliang <771730766@qq.com> Date: Sun, 13 Nov 2022 00:13:02 +0800 Subject: [PATCH] =?UTF-8?q?MediaServer=20-v=20=E6=89=93=E5=8D=B0=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=97=A5=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/main.cpp b/server/main.cpp index 7c96c5a1..a9c829c2 100644 --- a/server/main.cpp +++ b/server/main.cpp @@ -165,6 +165,7 @@ public: [](const std::shared_ptr &stream, const string &arg) -> bool { //版本信息 *stream << "编译日期: " << BUILD_TIME << std::endl; + *stream << "代码日期: " << COMMIT_TIME << std::endl; *stream << "当前git分支: " << BRANCH_NAME << std::endl; *stream << "当前git hash值: " << COMMIT_HASH << std::endl; throw ExitException();