Skip to content

Commit

Permalink
skip image verification for bridges
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Feb 16, 2021
1 parent 4dd5a1b commit cd4706a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clab/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,9 @@ func (c *CLab) verifyLinks() error {
func (c *CLab) VerifyImages(ctx context.Context) error {
images := map[string]struct{}{}
for _, node := range c.Nodes {
images[node.Image] = struct{}{}
if node.Image != "" {
images[node.Image] = struct{}{}
}
}

for image := range images {
Expand Down

0 comments on commit cd4706a

Please sign in to comment.