Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Sep 19, 2024
1 parent f6b6e32 commit f43a051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/swc-releaser/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ impl<'a> Bump<'a> {

let a = self.graph.node(pkg_name);
for dep in self.graph.g.neighbors_directed(a, Direction::Incoming) {
let dep_name = self.graph.ix[dep];
let dep_name = &*self.graph.ix[dep];
self.bump_crate(&dep_name, None, true, dry_run)?;
}
}
Expand Down

0 comments on commit f43a051

Please sign in to comment.