From eec6469ba1cbae45f70e8172651fd139e5344df6 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 12 Feb 2023 16:37:02 +0100 Subject: [PATCH] fix: Change error message to reflect RECIPE -> TYPE Closes https://git.coopcloud.tech/coop-cloud/organising/issues/409 --- pkg/config/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app.go b/pkg/config/app.go index 9128488e..6631503d 100644 --- a/pkg/config/app.go +++ b/pkg/config/app.go @@ -173,7 +173,7 @@ func newApp(env AppEnv, name string, appFile AppFile) (App, error) { if !exists { recipe, exists = env["TYPE"] if !exists { - return App{}, fmt.Errorf("%s is missing the RECIPE env var", name) + return App{}, fmt.Errorf("%s is missing the TYPE env var?", name) } }