diff --git a/cmd/meroxa/root/apps/deploy.go b/cmd/meroxa/root/apps/deploy.go index 015bfeb6e..186a5af73 100644 --- a/cmd/meroxa/root/apps/deploy.go +++ b/cmd/meroxa/root/apps/deploy.go @@ -782,6 +782,9 @@ func (d *Deploy) appModified(ctx context.Context) (bool, error) { latest, err := d.client.GetLatestDeployment(ctx, app.Name) if err != nil { + if strings.Contains(err.Error(), "could not find deployment") { + return true, nil + } return false, err }