This commit is contained in:
Garrett Campbell 2024-08-19 10:47:26 -04:00
Родитель 9b684df862
Коммит 75045aa4c6
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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:

Просмотреть файл

@ -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);