Skip to content

Commit

Permalink
fix(build): add a new line to output
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Sep 14, 2023
1 parent f5c3559 commit 855fa38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ export default class BuildImpl {
const pathToMarkDownFile = `.sfpowerscripts/outputs/build-error-info.md`;
fs.mkdirpSync(".sfpowerscripts/outputs");
fs.createFileSync(pathToMarkDownFile);
fs.appendFileSync(pathToMarkDownFile, `Please find the errors observed during build\n\n`);
fs.appendFileSync(pathToMarkDownFile, `\nPlease find the errors observed during build\n\n`);
fs.appendFileSync(pathToMarkDownFile, `## ${pkg}\n\n`);
fs.appendFileSync(pathToMarkDownFile, data);

Expand Down

0 comments on commit 855fa38

Please sign in to comment.