ksud: fmt & fix build

This commit is contained in:
ShirkNeko
2025-11-18 12:44:27 +08:00
parent 029ae8d389
commit 22cb7596a7
2 changed files with 3 additions and 9 deletions

View File

@@ -661,10 +661,7 @@ pub fn run() -> Result<()> {
}
}
Commands::Umount { command } => match command {
Umount::Add {
path,
flags,
} => crate::umount_manager::add_umount_path(&path, flags),
Umount::Add { path, flags } => crate::umount_manager::add_umount_path(&path, flags),
Umount::Remove { path } => crate::umount_manager::remove_umount_path(&path),
Umount::List => crate::umount_manager::list_umount_paths(),
Umount::ClearCustom => crate::umount_manager::clear_custom_paths(),