From 3d7961282a8bf69472e5b56507e65829dd562a11 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 6 Aug 2021 21:24:56 +0200 Subject: [PATCH] refactor: drop that back to TODO for now --- cli/recipe/recipe.go | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/cli/recipe/recipe.go b/cli/recipe/recipe.go index 534667292..bd854abca 100644 --- a/cli/recipe/recipe.go +++ b/cli/recipe/recipe.go @@ -155,25 +155,7 @@ var recipeUpgradeCommand = &cli.Command{ if recipe == "" { internal.ShowSubcommandHelpAndError(c, errors.New("no recipe provided")) } - - type existingTags struct { - AppCatalogueTags map[string]string - RegistryTags map[string]string - RecipeSkipTags map[string]string - } - - compose, err := config.GetAppComposeFiles(recipe) - if err != nil { - logrus.Fatal(err) - } - - for _, service := range compose.Services { - _, err := catalogue.VersionsOfService(recipe, service.Name) - if err != nil { - logrus.Fatal(err) - } - } - // TODO + // TODO: part 1 of https://git.coopcloud.tech/coop-cloud/go-abra/issues/39#issuecomment-8066 return nil }, }