abra/cli/internal/validate.go
decentral1se c99f0fc908
All checks were successful
continuous-integration/drone/push Build is passing
refactor: recipe validation
2021-09-05 01:55:10 +02:00

25 lines
459 B
Go

package internal
import (
"errors"
"coopcloud.tech/abra/recipe"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
// ValidateRecipeArg ensures the recipe arg is valid.
func ValidateRecipeArg(c *cli.Context) string {
recipeName := c.Args().First()
if recipeName == "" {
ShowSubcommandHelpAndError(c, errors.New("no recipe provided"))
}
if err := recipe.EnsureExists(recipeName); err != nil {
logrus.Fatal(err)
}
return recipeName
}