0
0
forked from toolshed/abra

fix: fix chaos mode for deployment

This commit is contained in:
2022-01-05 19:21:41 +01:00
parent b22b63c2ba
commit 4b7ec6384c

View File

@ -24,8 +24,10 @@ import (
func DeployAction(c *cli.Context) error { func DeployAction(c *cli.Context) error {
app := ValidateApp(c) app := ValidateApp(c)
if err := recipe.EnsureUpToDate(app.Type); err != nil { if !Chaos {
logrus.Fatal(err) if err := recipe.EnsureUpToDate(app.Type); err != nil {
logrus.Fatal(err)
}
} }
r, err := recipe.Get(app.Type) r, err := recipe.Get(app.Type)