fix: ensure clean slate for re-deploy
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-11-21 14:42:38 +01:00
parent ce57d5ed54
commit ef6a9abba9
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 6 additions and 0 deletions

View File

@ -73,6 +73,12 @@ func DeployAction(c *cli.Context) error {
}
}
if version != "" && !Chaos {
if err := recipe.EnsureVersion(app.Type, version); err != nil {
logrus.Fatal(err)
}
}
if Chaos {
logrus.Warnf("chaos mode engaged")
var err error