aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/src/main.rs
diff options
context:
space:
mode:
authorEskil Queseth <eskilq@kth.se>2021-03-21 21:54:35 +0100
committerEskil Queseth <eskilq@kth.se>2021-03-21 21:54:35 +0100
commitf9d1f57e2df87ebfaecccdad230feadc1dffd609 (patch)
tree53b86c38155181b25ef1adea333a4312825f11a6 /mumd/src/main.rs
parentf4f9df5ab9cc40c11164e7e696ed3a60dc7b8e34 (diff)
downloadmum-f9d1f57e2df87ebfaecccdad230feadc1dffd609.tar.gz
made more consistent output without git
Diffstat (limited to 'mumd/src/main.rs')
-rw-r--r--mumd/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs
index e7b4bec..7c3745c 100644
--- a/mumd/src/main.rs
+++ b/mumd/src/main.rs
@@ -16,7 +16,7 @@ use tokio::task::spawn_blocking;
#[tokio::main]
async fn main() {
if std::env::args().find(|s| s.as_str() == "--version").is_some() {
- println!(env!("VERSION"));
+ println!("mumd {}", env!("VERSION"));
return;
}