Skip to content

Commit

Permalink
Merge 5ab50e4 into 6f01692
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Apr 5, 2024
2 parents 6f01692 + 5ab50e4 commit d11e769
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,11 @@ func newMirrorRenewCmd() *cobra.Command {
if !v1manifest.IsExpirationError(perrs.Cause(err)) {
return err
}
fmt.Println(err)
fmt.Printf("Ignoring expiration error: %s", err)
}

if m == nil {
return errors.New("got nil manifest")
}

if days > 0 {
Expand Down

0 comments on commit d11e769

Please sign in to comment.