diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-13 22:48:34 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-13 22:48:34 +0200 |
commit | aab94c7cf995fb846060c758dd78dbfa009c6f10 (patch) | |
tree | 7cb6725a5dce0787fdb04fbfb0cb7fad887e7d9e | |
parent | 48095489b4e1b85f82d80adf69abd691f9bc1679 (diff) |
Update self-identification.
-rw-r--r-- | src/eval.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.zig b/src/eval.zig index 6c9a449..bc39887 100644 --- a/src/eval.zig +++ b/src/eval.zig @@ -163,7 +163,7 @@ fn executeCommandWithOutput(command: Command, allocator: Allocator, output_captu return CommandStatus{ .Code = 0 }; }, .Ver => { - const output = "DOSE Version 6.22\n"; + const output = "MB-DOSE Version 6.22\n"; if (output_capture) |capture| { try capture.write(output); } else { |