fix: add autocomplete for vol ls

This commit is contained in:
decentral1se 2021-12-22 00:08:26 +01:00
parent 29a4d05944
commit 7e0feec311
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 4 additions and 3 deletions

View File

@ -11,9 +11,10 @@ import (
)
var appVolumeListCommand = &cli.Command{
Name: "list",
Usage: "List volumes associated with an app",
Aliases: []string{"ls"},
Name: "list",
Usage: "List volumes associated with an app",
Aliases: []string{"ls"},
BashComplete: autocomplete.AppNameComplete,
Action: func(c *cli.Context) error {
app := internal.ValidateApp(c)