Skip to content

Commit

Permalink
Fix using map for cleaning stale bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
martintomazic committed Jan 14, 2025
1 parent 2df654f commit 9cc236e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/runtime/bundle/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ func (d *Discovery) cleanStaleExplodedBundles() {
"err", err)
continue
}
if _, configured := runtimes[manifest.ID]; !configured {
if _, configured := runtimes[manifest.ID]; configured {
continue
}
explodedDir := filepath.Join(bundlesDir, manifestHash)
Expand Down

0 comments on commit 9cc236e

Please sign in to comment.