ci(fuzz): Fix: would try to copy from nonexistent paths after merging with another archive
This commit is contained in:
parent
9568e713bd
commit
4a01dd33e3
1 changed files with 5 additions and 4 deletions
|
@ -44,10 +44,11 @@ pub struct FileOperation<'k> {
|
|||
|
||||
impl <'k> FileOperation<'k> {
|
||||
fn get_path(&self) -> Cow<PathBuf> {
|
||||
if let BasicFileOperation::WriteDirectory(_) = self.basic {
|
||||
Cow::Owned(self.path.join("/"))
|
||||
} else {
|
||||
Cow::Borrowed(&self.path)
|
||||
match self.basic {
|
||||
BasicFileOperation::WriteDirectory(_) => Cow::Owned(self.path.join("/")),
|
||||
BasicFileOperation::MergeWithOtherFile { operations } =>
|
||||
operations[0].0.get_path(),
|
||||
_ => Cow::Borrowed(&self.path)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue