Skip to content

Commit f7fbab6

Browse files
committed
fix: remove extra new lines
1 parent 770110f commit f7fbab6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/commands/org/create/scratch.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,8 @@ export default class OrgCreateScratch extends SfCommand<ScratchCreateResponse> {
224224
if (flags.async) {
225225
ms.goto('done', { scratchOrgInfo });
226226
ms.stop();
227-
228-
this.log();
229227
this.info(messages.getMessage('action.resume', [this.config.bin, scratchOrgInfo.Id]));
230228
} else {
231-
this.log();
232229
this.logSuccess(messages.getMessage('success'));
233230
}
234231

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

242-
this.log();
243239
this.info(resumeMessage);
244240
this.error('The scratch org did not complete within your wait time', { code: '69', exit: 69 });
245241
} else {

test/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"skipLibCheck": true,
66
"strictNullChecks": true,
77
"baseUrl": "../",
8-
"sourceMap": true,
9-
"jsx": "react"
8+
"sourceMap": true
109
}
1110
}

0 commit comments

Comments
 (0)