Skip to content

Commit

Permalink
Fixing bugs in Rust run outline
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Lyon authored and nicholaslyang committed Sep 27, 2023
1 parent a0930f5 commit a943280
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/turborepo-lib/src/run/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ impl<'a> Run<'a> {

if filtered_pkgs.len() != pkg_dep_graph.len() {
for target in self.targets() {
let task_name = TaskName::from(target.as_str());
let task_name = TaskName::from(target.as_str()).into_root_task();

if root_turbo_json.pipeline.contains_key(&task_name) {
filtered_pkgs.insert(WorkspaceName::Root);
break;
Expand Down

0 comments on commit a943280

Please sign in to comment.