Skip to content

Commit

Permalink
Fix incorrect error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanjli committed Oct 13, 2024
1 parent a93120e commit ca0fc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/forklift/cli/caching-exports.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func DownloadExportFiles(
) error {
httpDownloads, ociDownloads, err := ListRequiredDownloads(deplsLoader, pkgLoader, includeDisabled)
if err != nil {
return errors.Wrap(err, "couldn't determine images required by package deployments")
return errors.Wrap(err, "couldn't determine file downloads required by package deployments")
}
if len(httpDownloads)+len(ociDownloads) == 0 {
return nil
Expand Down

0 comments on commit ca0fc16

Please sign in to comment.