mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-13 03:40:37 +00:00
fix(wally-compat): correctly update sync tool files
This commit is contained in:
parent
10a420b177
commit
57e6aedfd1
1 changed files with 2 additions and 2 deletions
|
@ -341,7 +341,7 @@ impl Manifest {
|
|||
}
|
||||
|
||||
let manifest = Self {
|
||||
name: wally_manifest.package.name.into(),
|
||||
name: wally_manifest.package.name.clone().into(),
|
||||
version: wally_manifest.package.version,
|
||||
exports: Exports {
|
||||
lib: Some(RelativePathBuf::from("true")),
|
||||
|
@ -367,7 +367,7 @@ impl Manifest {
|
|||
|
||||
manifest.write(&dir_path)?;
|
||||
|
||||
update_sync_tool_files(&dir_path, manifest.name.name().to_string())?;
|
||||
update_sync_tool_files(&dir_path, wally_manifest.package.name.name().to_string())?;
|
||||
|
||||
Ok(manifest)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue