From b535bac9c3b893ec3a0e193ccc7525f11ace9b9d Mon Sep 17 00:00:00 2001 From: Manabu Sugimoto Date: Thu, 25 Aug 2022 00:32:35 +0900 Subject: [PATCH] runk: Add cli message for init command Add cli message for init command to tell the user not to run this command directly. Fixes: #4367 Signed-off-by: Manabu Sugimoto --- src/tools/runk/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/runk/src/main.rs b/src/tools/runk/src/main.rs index 9f338ec404..23334d149b 100644 --- a/src/tools/runk/src/main.rs +++ b/src/tools/runk/src/main.rs @@ -28,6 +28,7 @@ enum SubCommand { Common(CommonCmd), #[clap(flatten)] Custom(CustomCmd), + /// Launch an init process (do not call it outside of runk) Init {}, }