diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-03-21 21:54:35 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-03-21 21:54:35 +0100 |
| commit | f9d1f57e2df87ebfaecccdad230feadc1dffd609 (patch) | |
| tree | 53b86c38155181b25ef1adea333a4312825f11a6 /mumd/src/main.rs | |
| parent | f4f9df5ab9cc40c11164e7e696ed3a60dc7b8e34 (diff) | |
| download | mum-f9d1f57e2df87ebfaecccdad230feadc1dffd609.tar.gz | |
made more consistent output without git
Diffstat (limited to 'mumd/src/main.rs')
| -rw-r--r-- | mumd/src/main.rs | 2 |
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; } |
