Skip to content

Commit

Permalink
fix: remove extra new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Aug 16, 2024
1 parent 770110f commit f7fbab6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions src/commands/org/create/scratch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,8 @@ export default class OrgCreateScratch extends SfCommand<ScratchCreateResponse> {
if (flags.async) {
ms.goto('done', { scratchOrgInfo });
ms.stop();

this.log();
this.info(messages.getMessage('action.resume', [this.config.bin, scratchOrgInfo.Id]));
} else {
this.log();
this.logSuccess(messages.getMessage('success'));
}

Expand All @@ -239,7 +236,6 @@ export default class OrgCreateScratch extends SfCommand<ScratchCreateResponse> {
const scratchOrgInfoId = (error.data as { scratchOrgInfoId: string }).scratchOrgInfoId;
const resumeMessage = messages.getMessage('action.resume', [this.config.bin, scratchOrgInfoId]);

this.log();
this.info(resumeMessage);
this.error('The scratch org did not complete within your wait time', { code: '69', exit: 69 });
} else {
Expand Down
3 changes: 1 addition & 2 deletions test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"skipLibCheck": true,
"strictNullChecks": true,
"baseUrl": "../",
"sourceMap": true,
"jsx": "react"
"sourceMap": true
}
}

0 comments on commit f7fbab6

Please sign in to comment.