0
0
forked from toolshed/abra

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

This commit is contained in:
2022-03-12 16:08:26 +01:00
parent 37a1fcc4af
commit 16fc5ee54b

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()