build: fix trailing newline in version string
This commit is contained in:
parent
d4aa64034c
commit
69d1453741
4 changed files with 7 additions and 4 deletions
|
@ -61,7 +61,10 @@ pub fn build(b: *zbs.Builder) !void {
|
|||
&ret,
|
||||
.Inherit,
|
||||
) catch break :blk version;
|
||||
break :blk try std.fmt.allocPrintZ(b.allocator, "{s}-{s}", .{ version, git_commit_hash });
|
||||
break :blk try std.fmt.allocPrintZ(b.allocator, "{s}-{s}", .{
|
||||
version,
|
||||
mem.trim(u8, git_commit_hash, &std.ascii.spaces),
|
||||
});
|
||||
} else {
|
||||
break :blk version;
|
||||
}
|
||||
|
|
|
@ -63,7 +63,7 @@ pub fn main() anyerror!void {
|
|||
}
|
||||
|
||||
if (result.boolFlag("-version")) {
|
||||
try io.getStdOut().writeAll(build_options.version);
|
||||
try io.getStdOut().writeAll(build_options.version ++ "\n");
|
||||
os.exit(0);
|
||||
}
|
||||
if (result.argFlag("-log-level")) |level_str| {
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -332,7 +332,7 @@ pub fn main() !void {
|
|||
if (result.args.len != 0) fatalPrintUsage("unknown option '{s}'", .{result.args[0]});
|
||||
|
||||
if (result.boolFlag("-version")) {
|
||||
try std.io.getStdOut().writeAll(@import("build_options").version);
|
||||
try std.io.getStdOut().writeAll(@import("build_options").version ++ "\n");
|
||||
os.exit(0);
|
||||
}
|
||||
if (result.argFlag("-view-padding")) |raw| {
|
||||
|
|
Loading…
Reference in a new issue