remove git version info

This commit is contained in:
Emil Lerch 2023-08-05 13:29:07 -07:00
parent d04e7b22e4
commit c18de40edd
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
2 changed files with 0 additions and 11 deletions

View File

@ -1,6 +0,0 @@
pub const hash = "a662f6f674e66aa4cff435553e2593b7fd0a9aef";
pub const abbreviated_hash = "a662f6f";
pub const commit_date = "2022-06-05 18:34:39 -0700";
pub const branch = "HEAD -> master, origin/master";
pub const dirty = true;
pub const pretty_version = "version a662f6f, committed at 2022-06-05 18:34:39 -0700 (dirty)";

View File

@ -1,7 +1,6 @@
const std = @import("std");
const aws = @import("aws.zig");
const json = @import("json.zig");
const version = @import("git_version.zig");
var verbose: u8 = 0;
@ -63,11 +62,7 @@ pub fn main() anyerror!void {
var tests = std.ArrayList(Tests).init(allocator);
defer tests.deinit();
var args = std.process.args();
var first = true;
while (args.next()) |arg| {
if (first)
std.log.info("{s} {s}", .{ arg, version.pretty_version });
first = false;
if (std.mem.eql(u8, "-v", arg)) {
verbose += 1;
continue;