mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 03:40:59 +01:00
chore: fix formatting
This commit is contained in:
parent
801acb0264
commit
3e4ef00f4a
1 changed files with 8 additions and 2 deletions
|
@ -154,7 +154,13 @@ impl Project {
|
||||||
let manifest = self.deser_manifest().await?;
|
let manifest = self.deser_manifest().await?;
|
||||||
let used_paths = graph
|
let used_paths = graph
|
||||||
.iter()
|
.iter()
|
||||||
.map(|(id, node)| node.node.container_folder(id).parent().unwrap().to_path_buf())
|
.map(|(id, node)| {
|
||||||
|
node.node
|
||||||
|
.container_folder(id)
|
||||||
|
.parent()
|
||||||
|
.unwrap()
|
||||||
|
.to_path_buf()
|
||||||
|
})
|
||||||
.collect::<HashSet<_>>();
|
.collect::<HashSet<_>>();
|
||||||
let used_paths = Arc::new(used_paths);
|
let used_paths = Arc::new(used_paths);
|
||||||
|
|
||||||
|
@ -249,7 +255,7 @@ impl Project {
|
||||||
while let Some(task) = tasks.join_next().await {
|
while let Some(task) = tasks.join_next().await {
|
||||||
task.unwrap()?;
|
task.unwrap()?;
|
||||||
}
|
}
|
||||||
|
|
||||||
remove_empty_dir(&scripts_dir).await?;
|
remove_empty_dir(&scripts_dir).await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Reference in a new issue