From 2de7524dea150656a9b038b4efc31139c617e791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20H=C3=A5rek=20Andreassen?= Date: Fri, 4 Oct 2024 11:35:50 +0200 Subject: [PATCH] fix: Remove bad alias from today MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim HĂ„rek Andreassen --- cmd/today.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/cmd/today.go b/cmd/today.go index 1ba8e12..48c3440 100644 --- a/cmd/today.go +++ b/cmd/today.go @@ -15,11 +15,10 @@ import ( ) var todayCmd = &cobra.Command{ - Use: "today ", - Aliases: []string{"twm", "trm"}, - Short: "Get tomorrow's forecasted weather", - Args: cobra.MaximumNArgs(1), - Run: today, + Use: "today ", + Short: "Get tomorrow's forecasted weather", + Args: cobra.MaximumNArgs(1), + Run: today, } func init() {