Skip to content

Commit

Permalink
Small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Apr 9, 2024
1 parent f8b4f69 commit d85286a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/turborepo-lib/src/engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ impl Engine<Built> {

let new_graph = self.task_graph.filter_map(
|node_idx, node| {
let task = &self.task_graph[node_idx];
match task {
match &self.task_graph[node_idx] {
TaskNode::Root => {}
TaskNode::Task(task) => {
// We only want to include tasks that are not persistent
Expand Down

0 comments on commit d85286a

Please sign in to comment.