mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
fix(wally-compat): 🐛 correct linking file paths
This commit is contained in:
parent
ba6c218847
commit
194687ca67
2 changed files with 14 additions and 8 deletions
|
@ -359,7 +359,10 @@ impl Project {
|
|||
})
|
||||
.or_else(|| Some(relative_path::RelativePathBuf::from("true")));
|
||||
|
||||
serde_yaml::to_writer(&std::fs::File::create(&source.join(crate::MANIFEST_FILE_NAME))?, &manifest)?;
|
||||
serde_yaml::to_writer(
|
||||
&std::fs::File::create(&source.join(crate::MANIFEST_FILE_NAME))?,
|
||||
&manifest,
|
||||
)?;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
use std::{
|
||||
collections::HashSet,
|
||||
fs::{read_to_string, write},
|
||||
iter,
|
||||
path::{Component, Path, PathBuf},
|
||||
};
|
||||
|
||||
|
@ -185,8 +184,9 @@ pub(crate) fn link<P: AsRef<Path>, Q: AsRef<Path>>(
|
|||
"script.Parent".to_string()
|
||||
};
|
||||
|
||||
let path = iter::once(Ok(beginning))
|
||||
.chain(path.components().map(|component| {
|
||||
let mut components = path
|
||||
.components()
|
||||
.map(|component| {
|
||||
Ok(match component {
|
||||
Component::ParentDir => ".Parent".to_string(),
|
||||
Component::Normal(part) => format!(
|
||||
|
@ -195,8 +195,11 @@ pub(crate) fn link<P: AsRef<Path>, Q: AsRef<Path>>(
|
|||
),
|
||||
_ => unreachable!("invalid path component"),
|
||||
})
|
||||
}))
|
||||
.collect::<Result<String, LinkingError>>()?;
|
||||
})
|
||||
.collect::<Result<Vec<_>, LinkingError>>()?;
|
||||
components.pop();
|
||||
|
||||
let path = beginning + &components.join("") + &format!("[{name:?}]");
|
||||
|
||||
debug!(
|
||||
"writing linking file for {} with import `{path}` to {}",
|
||||
|
|
Loading…
Add table
Reference in a new issue