fix: can't force remove if it is already deployed

This commit is contained in:
decentral1se 2022-03-12 16:08:26 +01:00
parent 37a1fcc4af
commit 16fc5ee54b
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ var appRemoveCommand = cli.Command{
logrus.Fatal(err)
}
if isDeployed {
logrus.Fatalf("%s is still deployed. Run \"abra app undeploy %s \" or pass --force", app.Name, app.Name)
logrus.Fatalf("%s is still deployed. Run \"abra app undeploy %s\"", app.Name, app.Name)
}
fs := filters.NewArgs()