We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1dac29 commit 1bc07f7Copy full SHA for 1bc07f7
crates/turborepo-lib/src/query/mod.rs
@@ -705,10 +705,12 @@ impl RepositoryQuery {
705
)?
706
.expect("set allow unknown objects to false");
707
708
- Ok(change_result
+ let files = change_result
709
.into_iter()
710
.map(|file| File::new(self.run.clone(), self.run.repo_root().resolve(&file)))
711
- .collect())
+ .collect::<Result<Vec<_>, _>>()?;
712
+
713
+ Ok(Array::from(files))
714
}
715
716
/// Gets a list of packages that match the given filter
0 commit comments