Skip to content

Commit

Permalink
fix: correct status on push filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 7, 2023
1 parent 4788a73 commit d656316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/force/source/push.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default class Push extends DeployCommand {
result.response.status === RequestStatus.Succeeded ||
// successful-ish (only warnings about deleted things that are already deleted)
(result.response.status === RequestStatus.Failed &&
result.getFileResponses().every((fr) => fr.state !== ComponentStatus.Changed) &&
result.getFileResponses().every((fr) => fr.state !== ComponentStatus.Failed) &&
!result.response.errorMessage);
// all successes
if (this.deployResults.every((result) => isSuccessLike(result))) {
Expand Down

0 comments on commit d656316

Please sign in to comment.