fix: make sure to clone recipe

Closes coop-cloud/organising#193.
This commit is contained in:
2021-10-11 00:34:23 +02:00
parent 1cb45113db
commit 0140f96ca1
2 changed files with 10 additions and 0 deletions

View File

@ -41,6 +41,10 @@ func ValidateApp(c *cli.Context) config.App {
logrus.Fatal(err)
}
if err := recipe.EnsureExists(app.Type); err != nil {
logrus.Fatal(err)
}
logrus.Debugf("validated '%s' as app argument", appName)
return app