From 820ddbc1cabe6c26113235cedd328bda7b096f75 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 14 May 2022 20:55:17 +0200 Subject: [PATCH] Disable 'daemon status' command I can implement it if someone actually asks for it. --- main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index fb3659b..516ca05 100644 --- a/main.go +++ b/main.go @@ -56,11 +56,11 @@ func main() { Usage: "Interact with the background daemon", Subcommands: []*cli.Command{ // FIXME: Add a command to show the daemon's logs - { - Name: "status", - Usage: "Show the Daemon's status", - Action: daemonStatus, - }, + // { + // Name: "status", + // Usage: "Show the Daemon's status", + // Action: daemonStatus, + // }, { Name: "list", Aliases: []string{"ls"},