diff --git a/userspace/ksud/src/cli.rs b/userspace/ksud/src/cli.rs index 485ae223..9c8f156c 100644 --- a/userspace/ksud/src/cli.rs +++ b/userspace/ksud/src/cli.rs @@ -48,9 +48,6 @@ enum Commands { command: Profile, }, - /// Print KernelSU tmpfs path - Path, - /// For developers Debug { #[command(subcommand)] @@ -231,10 +228,6 @@ pub fn run() -> Result<()> { Profile::DeleteTemplate { id } => crate::profile::delete_template(id), Profile::ListTemplates => crate::profile::list_templates(), }, - Commands::Path => { - println!("{}", utils::get_tmp_path()); - Ok(()) - } Commands::Debug { command } => match command { Debug::SetManager { apk } => debug::set_manager(&apk),