From df7a17364938c53bef9447fbdafb83bf99277f81 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Wed, 26 Feb 2020 16:16:57 -0400 Subject: [PATCH] Shorten version and prefix with v So we get `v0.7.0` instead of `lokinet-0.7.0-abcdef12`; the latter is useful for devs, but not so much for random operators (and you can always go get the full version from the binary). --- llarp/router/router.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/router/router.cpp b/llarp/router/router.cpp index 52666256c..80112171b 100644 --- a/llarp/router/router.cpp +++ b/llarp/router/router.cpp @@ -680,7 +680,7 @@ namespace llarp #if defined(WITH_SYSTEMD) { std::stringstream ss; - ss << "WATCHDOG=1\nSTATUS=" << llarp::VERSION_FULL; + ss << "WATCHDOG=1\nSTATUS=v" << llarp::VERSION_STR; if(IsServiceNode()) { ss << " snode | known/svc/clients: " << nodedb()->num_loaded() << "/"