Skip to content

Commit

Permalink
Update src/pkg/packager/sources/validate.go
Browse files Browse the repository at this point in the history
Co-authored-by: Wayne Starr <Racer159@users.noreply.github.com>
  • Loading branch information
mjnagel and Racer159 committed Jan 26, 2024
1 parent ea0cf2f commit ac31e69
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pkg/packager/sources/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,17 @@ func ValidatePackageIntegrity(loaded *layout.PackagePaths, aggregateChecksum str
checkedMap[loaded.Signature] = true

err = lineByLine(checksumPath, func(line string) error {
// If the line is empty (i.e. there is no checksum) simply skip it - this can result from a package with no images/components
if line == "" {
return nil
}

split := strings.Split(line, " ")
// If the line is not splitable into two pieces the file is likely corrupted
if len(split) != 2 {
return fmt.Errorf("invalid checksum line: %s", line)
}

sha := split[0]
rel := split[1]

Expand Down

0 comments on commit ac31e69

Please sign in to comment.