Skip to content

Commit 9e1750d

Browse files
committed
Removed additional new line added to output.
1 parent 52d5987 commit 9e1750d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/doxdox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ ${chalk.yellow(' -t, --title')} Sets title.
7070

7171
if (output) {
7272

73-
fs.writeFileSync(output, `${content}\n`, 'utf8');
73+
fs.writeFileSync(output, content, 'utf8');
7474

7575
} else {
7676

77-
process.stdout.write(`${content}\n`);
77+
process.stdout.write(content);
7878

7979
}
8080

0 commit comments

Comments
 (0)