abra/cli/app/rollback.go
knoflook 511619722f
All checks were successful
continuous-integration/drone/pr Build is passing
feat: autocomplete recipe names for more abra commands
2021-09-08 13:59:55 +02:00

28 lines
469 B
Go

package app
import (
"fmt"
"coopcloud.tech/abra/pkg/config"
"github.com/urfave/cli/v2"
)
var appRollbackCommand = &cli.Command{
Name: "rollback",
Usage: "Roll an app back to a previous version",
Aliases: []string{"b"},
ArgsUsage: "[<version>]",
BashComplete: func(c *cli.Context) {
appNames, err := config.GetAppNames()
if err != nil {
return
}
if c.NArg() > 0 {
return
}
for _, a := range appNames {
fmt.Println(a)
}
},
}