Skip to content
This repository was archived by the owner on Mar 18, 2024. It is now read-only.

Commit db5b22a

Browse files
fix(org-info): fix markdown formatting
1 parent f958146 commit db5b22a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/sfpowerscripts-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dxatscale/sfpowerscripts",
33
"description": "DX@Scale Toolkit",
4-
"version": "25.1.5",
4+
"version": "25.1.6",
55
"license": "MIT",
66
"author": "dxatscale",
77
"release": "December 23",

packages/sfpowerscripts-cli/src/ui/OrgInfoDisplayer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default class OrgInfoDisplayer {
7373
public static writeScratchOrgInfoToMarkDown(scratchOrg: ScratchOrg): void {
7474
const pathToMarkDownFile = `org-info.md`;
7575
const fileOutputHandler = FileOutputHandler.getInstance();
76-
fileOutputHandler.writeOutput(pathToMarkDownFile, `Please find the validation org details below`);
76+
fileOutputHandler.writeOutput(pathToMarkDownFile, `\nPlease find the validation org details below`);
7777
let tableData = {
7878
table: {
7979
head: [
@@ -133,7 +133,7 @@ export default class OrgInfoDisplayer {
133133
public static writeOrgInfoToMarkDown(org: SFPOrg): void {
134134
const pathToMarkDownFile = `org-info.md`;
135135
const fileOutputHandler = FileOutputHandler.getInstance();
136-
fileOutputHandler.appendOutput(pathToMarkDownFile, `Please find the validation org details below`);
136+
fileOutputHandler.appendOutput(pathToMarkDownFile, `\nPlease find the validation org details below`);
137137
let tableData = {
138138
table: {
139139
head: [

0 commit comments

Comments
 (0)