Skip to content

Commit

Permalink
fix(org-info): fix markdown formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Nov 1, 2023
1 parent f958146 commit db5b22a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/sfpowerscripts-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dxatscale/sfpowerscripts",
"description": "DX@Scale Toolkit",
"version": "25.1.5",
"version": "25.1.6",
"license": "MIT",
"author": "dxatscale",
"release": "December 23",
Expand Down
4 changes: 2 additions & 2 deletions packages/sfpowerscripts-cli/src/ui/OrgInfoDisplayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class OrgInfoDisplayer {
public static writeScratchOrgInfoToMarkDown(scratchOrg: ScratchOrg): void {
const pathToMarkDownFile = `org-info.md`;
const fileOutputHandler = FileOutputHandler.getInstance();
fileOutputHandler.writeOutput(pathToMarkDownFile, `Please find the validation org details below`);
fileOutputHandler.writeOutput(pathToMarkDownFile, `\nPlease find the validation org details below`);
let tableData = {
table: {
head: [
Expand Down Expand Up @@ -133,7 +133,7 @@ export default class OrgInfoDisplayer {
public static writeOrgInfoToMarkDown(org: SFPOrg): void {
const pathToMarkDownFile = `org-info.md`;
const fileOutputHandler = FileOutputHandler.getInstance();
fileOutputHandler.appendOutput(pathToMarkDownFile, `Please find the validation org details below`);
fileOutputHandler.appendOutput(pathToMarkDownFile, `\nPlease find the validation org details below`);
let tableData = {
table: {
head: [
Expand Down

0 comments on commit db5b22a

Please sign in to comment.