Skip to content

Commit

Permalink
[installer]: remove invalid repo from mirror list
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Emms committed Mar 28, 2022
1 parent c784477 commit 8ffeb85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions install/installer/cmd/mirror_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ func generateMirrorList(cfgVersion string, cfg *configv1.Config) ([]mirrorListRe

images := make([]mirrorListRepo, 0)
for _, img := range rawImages {
if img == common.GitpodContainerRegistry {
continue
}
// Dedupe
if _, ok := allImages[img]; ok {
continue
Expand Down

0 comments on commit 8ffeb85

Please sign in to comment.