whitespace fixup
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
804f61432d
commit
e832860a3c
|
@ -1271,8 +1271,8 @@ where
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
zip.add_entry(entry, Some(file.contents().await?))
|
zip.add_entry(entry, Some(file.contents().await?))
|
||||||
.await
|
.await
|
||||||
.map_err(|err| format_err!("could not send file entry: {}", err))?;
|
.map_err(|err| format_err!("could not send file entry: {}", err))?;
|
||||||
}
|
}
|
||||||
EntryKind::Hardlink(_) => {
|
EntryKind::Hardlink(_) => {
|
||||||
let realfile = decoder.follow_hardlink(&file).await?;
|
let realfile = decoder.follow_hardlink(&file).await?;
|
||||||
|
@ -1283,8 +1283,8 @@ where
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
zip.add_entry(entry, Some(realfile.contents().await?))
|
zip.add_entry(entry, Some(realfile.contents().await?))
|
||||||
.await
|
.await
|
||||||
.map_err(|err| format_err!("could not send file entry: {}", err))?;
|
.map_err(|err| format_err!("could not send file entry: {}", err))?;
|
||||||
}
|
}
|
||||||
EntryKind::Directory => {
|
EntryKind::Directory => {
|
||||||
let dir = file.enter_directory().await?;
|
let dir = file.enter_directory().await?;
|
||||||
|
|
Loading…
Reference in New Issue