diff options
| author | Isaac Freund <mail@isaacfreund.com> | 2021-11-02 23:54:44 +0100 |
|---|---|---|
| committer | Isaac Freund <mail@isaacfreund.com> | 2021-11-02 23:54:44 +0100 |
| commit | 69d1453741701549ebb71acd319c49eafd674c20 (patch) | |
| tree | 4e33333dcb11cdd742e8183395887dfb729cb493 /riverctl/main.zig | |
| parent | d4aa64034cdaf2cf0a41c89af3b17c943b7bddb2 (diff) | |
| download | river-69d1453741701549ebb71acd319c49eafd674c20.tar.gz river-69d1453741701549ebb71acd319c49eafd674c20.tar.xz | |
build: fix trailing newline in version string
Diffstat (limited to 'riverctl/main.zig')
| -rw-r--r-- | riverctl/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/riverctl/main.zig b/riverctl/main.zig index 624f076..63ec331 100644 --- a/riverctl/main.zig +++ b/riverctl/main.zig @@ -78,7 +78,7 @@ fn _main() !void { os.exit(0); } if (result.boolFlag("-version")) { - try io.getStdOut().writeAll(@import("build_options").version); + try io.getStdOut().writeAll(@import("build_options").version ++ "\n"); os.exit(0); } |
