Skip to content

Commit

Permalink
Fix version error message
Browse files Browse the repository at this point in the history
  • Loading branch information
gagliardetto committed Dec 11, 2024
1 parent a3ad8e9 commit a284c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gsfa/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func NewManifest(filename string, meta indexmeta.Meta) (*Manifest, error) {
return nil, err
}
if header.Version() != _Version {
return nil, fmt.Errorf("unsupported manifest version: %d", header.Version())
return nil, fmt.Errorf("unsupported manifest version: %d; expected %d", header.Version(), _Version)
}
man.header = header
}
Expand Down

0 comments on commit a284c7a

Please sign in to comment.