Skip to content

Commit

Permalink
Small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Apr 15, 2024
1 parent 08e633a commit 0d4f68d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/turborepo-lib/src/engine/mod.rs
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 0d4f68d

Please sign in to comment.