feat: auto-deploy traefik prototype
All checks were successful
continuous-integration/drone/push Build is passing

Closes coop-cloud/organising#212.
This commit is contained in:
2021-11-03 09:41:20 +01:00
parent c227972c12
commit 04e24022f5
3 changed files with 43 additions and 10 deletions

View File

@ -57,7 +57,7 @@ func ValidateRecipeWithPrompt(c *cli.Context) recipe.Recipe {
}
}
if recipeName == "" && RecipeName != "" {
if RecipeName != "" {
recipeName = RecipeName
logrus.Debugf("programmatically setting recipe name to %s", recipeName)
}
@ -80,7 +80,7 @@ func ValidateRecipeWithPrompt(c *cli.Context) recipe.Recipe {
func ValidateApp(c *cli.Context) config.App {
appName := c.Args().First()
if appName == "" && AppName != "" {
if AppName != "" {
appName = AppName
logrus.Debugf("programmatically setting app name to %s", appName)
}