ksud: fmt

This commit is contained in:
weishu 2024-02-29 20:34:50 +08:00
parent 5355625ed6
commit ed254b7ab4
No known key found for this signature in database
GPG Key ID: 6D3F65FFD9559C06

View File

@ -265,7 +265,7 @@ fn copy_xattrs(src_path: impl AsRef<Path>, dest_path: impl AsRef<Path>) -> Resul
} }
Ok(()) Ok(())
} }
#[cfg(any(target_os = "linux", target_os = "android"))] #[cfg(any(target_os = "linux", target_os = "android"))]
pub fn copy_module_files(source: impl AsRef<Path>, destination: impl AsRef<Path>) -> Result<()> { pub fn copy_module_files(source: impl AsRef<Path>, destination: impl AsRef<Path>) -> Result<()> {
use rustix::fs::FileTypeExt; use rustix::fs::FileTypeExt;
@ -285,9 +285,7 @@ pub fn copy_module_files(source: impl AsRef<Path>, destination: impl AsRef<Path>
if entry.file_type().is_file() { if entry.file_type().is_file() {
std::fs::copy(&source_path, &dest_path).with_context(|| { std::fs::copy(&source_path, &dest_path).with_context(|| {
format!( format!("Failed to copy file from {source_path:?} to {dest_path:?}",)
"Failed to copy file from {source_path:?} to {dest_path:?}",
)
})?; })?;
copy_xattrs(&source_path, &dest_path)?; copy_xattrs(&source_path, &dest_path)?;
} else if entry.file_type().is_symlink() { } else if entry.file_type().is_symlink() {
@ -337,4 +335,4 @@ pub fn copy_module_files(source: impl AsRef<Path>, destination: impl AsRef<Path>
#[cfg(not(any(target_os = "linux", target_os = "android")))] #[cfg(not(any(target_os = "linux", target_os = "android")))]
pub fn copy_module_files(_source: impl AsRef<Path>, _destination: impl AsRef<Path>) -> Result<()> { pub fn copy_module_files(_source: impl AsRef<Path>, _destination: impl AsRef<Path>) -> Result<()> {
unimplemented!() unimplemented!()
} }