Skip to content

Commit

Permalink
Merge pull request #44 from DaoCloud/fix-no-image
Browse files Browse the repository at this point in the history
Fix No Image
  • Loading branch information
RuliXu authored Oct 19, 2023
2 parents c181e26 + c92bcf0 commit 537b557
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func (cm *ChartMover) loadImageHints(src *Source) error {
} else if err := cm.loadImageHintsFromFileOrChart(src.ImageHintsFile); err != nil {
return err
}
if cm.rawHints == nil {
if cm.rawHints == nil && !cm.skipImages {
return ErrImageHintsMissing
}
return nil
Expand Down

0 comments on commit 537b557

Please sign in to comment.