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 f09be60 commit 4715c03Copy full SHA for 4715c03
src/commands/project/deploy/start.ts
@@ -240,8 +240,6 @@ export default class DeployMetadata extends SfCommand<DeployResultJson> {
240
project
241
);
242
243
- this.stages.start(username, deploy);
244
-
245
if (!deploy) {
246
this.stages.stop();
247
this.log('No changes to deploy');
@@ -252,6 +250,8 @@ export default class DeployMetadata extends SfCommand<DeployResultJson> {
252
250
throw new SfError('The deploy id is not available.');
253
251
}
254
+ this.stages.start(username, deploy);
+
255
if (flags.async) {
256
this.stages.done({ status: 'Queued', username });
257
0 commit comments