We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0dde3 commit 083e636Copy full SHA for 083e636
src/commands/project/deploy/start.ts
@@ -293,10 +293,11 @@ export default class DeployMetadata extends SfCommand<DeployResultJson> {
293
}
294
295
protected catch(error: Error | SfError): Promise<never> {
296
+ this.stages?.update({ status: 'Failed' });
297
+ this.stages?.error();
298
+
299
if (error instanceof SourceConflictError && error.data) {
300
if (!this.jsonEnabled()) {
- this.stages?.update({ status: 'Failed' });
- this.stages?.error();
301
writeConflictTable(error.data);
302
// set the message and add plugin-specific actions
303
return super.catch({
0 commit comments