Skip to content

Commit

Permalink
fixing error bug importing tar
Browse files Browse the repository at this point in the history
Signed-off-by: ashpect <[email protected]>
  • Loading branch information
ashpect committed May 23, 2024
1 parent 77d8930 commit 187106d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/imgpkg/cmd/copy_repo_src.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (c CopyRepoSrc) CopyToRepo(repo string) (*ctlimgset.ProcessedImages, error)
} else {
processedImages, err = c.tarImageSet.Import(c.TarFlags.TarSrc, importRepo, c.registry, false)
if err != nil {
return nil, fmt.Errorf("Importing tar: %s", err)
return nil, err
}
}

Expand Down

0 comments on commit 187106d

Please sign in to comment.