diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 11:46:07 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 11:46:07 -0500 | 
| commit | e28d06038a19585108f2cdb2609126a3aa79fe52 (patch) | |
| tree | cd1d455974abfeff680a6a86be22cea4f54eea6b | |
| parent | 8ca6947632f51fa8e0e17fecd7096c13993f4055 (diff) | |
new argv.proto
| -rw-r--r-- | argv.custom.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.custom.go b/argv.custom.go index f49adcd..8cc1963 100644 --- a/argv.custom.go +++ b/argv.custom.go @@ -40,7 +40,7 @@ func init() {  // sends the strings to bash or zsh that will be your options  func (a args) SendCompletionStrings(pb *argvpb.Argv) { -	if pb.Cmd == "" { +	if pb.GetCmd() == "" {  		base := []string{"--version", "list", "droplet"}  		pb.SendStrings(base)  	} else {  | 
