fix: change error message to reflect RECIPE -> TYPE #274

Merged
decentral1se merged 1 commits from fix-missing-env-var into main 2023-02-13 11:06:25 +00:00

View File

@ -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)
}
}