refactor: drop this for now

This commit is contained in:
decentral1se 2021-08-10 08:34:36 +02:00
parent 1c217b127b
commit c6ea18311e
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 0 additions and 15 deletions

View File

@ -284,20 +284,6 @@ var recipeSyncCommand = &cli.Command{
},
}
var recipeReleaseCommand = &cli.Command{
Name: "release",
Usage: "Release a new recipe version",
ArgsUsage: "<recipe>",
Action: func(c *cli.Context) error {
recipe := c.Args().First()
if recipe == "" {
internal.ShowSubcommandHelpAndError(c, errors.New("no recipe provided"))
}
// TODO: part 3 of https://git.coopcloud.tech/coop-cloud/go-abra/issues/39#issuecomment-8066
return nil
},
}
var recipeLintCommand = &cli.Command{
Name: "lint",
Usage: "Recipe configuration linter",
@ -404,7 +390,6 @@ how reliable this app is to deploy and maintain in its current state.
recipeCreateCommand,
recipeUpgradeCommand,
recipeSyncCommand,
recipeReleaseCommand,
recipeLintCommand,
},
}