From e896fe2ad58575556e61fa327d1cbefb6b712113 Mon Sep 17 00:00:00 2001 From: heshuaichen Date: Thu, 2 Jul 2026 14:04:15 +0800 Subject: [PATCH] fix: clarify --profile global flag help description --- cmd/global_flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/global_flags.go b/cmd/global_flags.go index b77e8f189..d93b5ccb0 100644 --- a/cmd/global_flags.go +++ b/cmd/global_flags.go @@ -21,7 +21,7 @@ type GlobalOptions struct { // applies any visibility policy encoded in opts. Pure function: no disk, // network, or environment reads — the caller decides HideProfile. func RegisterGlobalFlags(fs *pflag.FlagSet, opts *GlobalOptions) { - fs.StringVar(&opts.Profile, "profile", "", "use a specific profile") + fs.StringVar(&opts.Profile, "profile", "", "use a specific configuration profile (see 'lark-cli profile list')") if opts.HideProfile { _ = fs.MarkHidden("profile") }