fix: ensure version for regular deploy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-11-02 15:16:19 +01:00
parent 7f176d8e2f
commit c76601c9ce

View File

@ -90,6 +90,12 @@ recipes.
}
}
if !internal.Chaos {
if err := recipe.EnsureVersion(app.Type, version); err != nil {
logrus.Fatal(err)
}
}
if internal.Chaos {
logrus.Warnf("chaos mode engaged")
var err error