mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-20 03:43:47 +01: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 {
|
let manifest = Self {
|
||||||
name: wally_manifest.package.name.into(),
|
name: wally_manifest.package.name.clone().into(),
|
||||||
version: wally_manifest.package.version,
|
version: wally_manifest.package.version,
|
||||||
exports: Exports {
|
exports: Exports {
|
||||||
lib: Some(RelativePathBuf::from("true")),
|
lib: Some(RelativePathBuf::from("true")),
|
||||||
|
@ -367,7 +367,7 @@ impl Manifest {
|
||||||
|
|
||||||
manifest.write(&dir_path)?;
|
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)
|
Ok(manifest)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue