diff options
| author | Jeff Carr <[email protected]> | 2025-10-14 07:11:42 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-14 07:11:42 -0500 |
| commit | bbe67531d56f5179603ba66a08d37474b47bc79f (patch) | |
| tree | 28910dde86d2d29eca90963460eedfb1ef1838d1 | |
| parent | a85d8ee85f34b55fdab3013f938ae490b965f875 (diff) | |
found some times finallyv0.0.12
| -rw-r--r-- | parseDpkgOutputIntoPB.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/parseDpkgOutputIntoPB.go b/parseDpkgOutputIntoPB.go index 645e888..ecddf4b 100644 --- a/parseDpkgOutputIntoPB.go +++ b/parseDpkgOutputIntoPB.go @@ -123,9 +123,11 @@ func ParseDpkgOutputIntoPB(pb *zoopb.Package, all string) { } } case "Deb-File-Date": + pb.DebInfo.DebCtime = varval t, _ := cobol.GetTime(varval) pb.Ctime = timestamppb.New(t) case "Build-Date": + pb.DebInfo.BuildDate = varval t, err := cobol.GetTime(varval) if err == nil { pb.BuildDate = timestamppb.New(t) |
