From c6ea18311e22886d8a6336db60f52884265ef34c Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 10 Aug 2021 08:34:36 +0200 Subject: [PATCH] refactor: drop this for now --- cli/recipe/recipe.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cli/recipe/recipe.go b/cli/recipe/recipe.go index 122e8e4e..5a9cd540 100644 --- a/cli/recipe/recipe.go +++ b/cli/recipe/recipe.go @@ -284,20 +284,6 @@ var recipeSyncCommand = &cli.Command{ }, } -var recipeReleaseCommand = &cli.Command{ - Name: "release", - Usage: "Release a new recipe version", - ArgsUsage: "", - 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, }, }