Skip to content

Commit

Permalink
Fix: remove debug output and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JanHoefelmeyer committed Jan 22, 2025
1 parent 0fdf2b2 commit f3249cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cmd/csaf_checker/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -762,10 +762,8 @@ func (p *processor) integrity(
p.badChanges.error("'current_release_date' is not a string in %s", u)
} else if d, err := time.Parse(time.RFC3339, text); err != nil {
p.badChanges.error(
"Parsing 'initial_release_date' as RFC3339 failed in %s: %v", u, err)
"Parsing 'current_release_date' as RFC3339 failed in %s: %v", u, err)
} else {
fmt.Println(p.times[f])
fmt.Println(d)
if p.times[f] != d {
p.badChanges.error("Current release date in changes.csv and %s is not identical", u)
}
Expand Down

0 comments on commit f3249cb

Please sign in to comment.