From 75045aa4c67f6cdcc6c834b49ef3705a82f3f768 Mon Sep 17 00:00:00 2001 From: Garrett Campbell Date: Mon, 19 Aug 2024 10:47:26 -0400 Subject: [PATCH] fix regression --- CHANGELOG.md | 6 ++++++ src/make.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4965cb..9c447ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # What's New? +## 0.11 + +Bug Fixes: + +- Ensure that we append line endings, which fixes a recent regression. [#641](https://github.com/microsoft/vscode-makefile-tools/issues/641) + ## 0.10.26 Bug Fixes: diff --git a/src/make.ts b/src/make.ts index c8b6dc9..4a36e82 100644 --- a/src/make.ts +++ b/src/make.ts @@ -728,7 +728,7 @@ export async function generateParseContent( let heartBeat: number = Date.now(); let stdout: any = (result: string): void => { - const appendStr: string = `${result}`; + const appendStr: string = `${result} ${lineEnding}`; completeOutput += appendStr; fs.appendFileSync(dryrunFile, appendStr);