From 7e6295c001ec510de8021fafe11482ec1fdb22e8 Mon Sep 17 00:00:00 2001 From: anoriqq Date: Sat, 21 May 2022 23:51:14 +0900 Subject: [PATCH] feat: add short command help message --- internal/cmd/getscript.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/cmd/getscript.go b/internal/cmd/getscript.go index 6c3537a..fe94572 100644 --- a/internal/cmd/getscript.go +++ b/internal/cmd/getscript.go @@ -14,8 +14,9 @@ import ( ) var getscriptCmd = &cobra.Command{ - Use: "getscript", - RunE: getscriptRun, + Use: "getscript", + Short: "get script dir form remote repository", + RunE: getscriptRun, } func init() {