From f540fa40e8381bce557623d3e7448ca56ccc8d18 Mon Sep 17 00:00:00 2001
From: Nullptr <noreply@nullptr.icu>
Date: Fri, 5 Jan 2024 17:14:03 +0800
Subject: [PATCH] Remove `ksud path` to make xi and vvb happy

---
 userspace/ksud/src/cli.rs | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/userspace/ksud/src/cli.rs b/userspace/ksud/src/cli.rs
index 485ae223577f..9c8f156c61d5 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),