fix regression
This commit is contained in:
Родитель
9b684df862
Коммит
75045aa4c6
|
@ -1,5 +1,11 @@
|
||||||
# What's New?
|
# 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
|
## 0.10.26
|
||||||
|
|
||||||
Bug Fixes:
|
Bug Fixes:
|
||||||
|
|
|
@ -728,7 +728,7 @@ export async function generateParseContent(
|
||||||
let heartBeat: number = Date.now();
|
let heartBeat: number = Date.now();
|
||||||
|
|
||||||
let stdout: any = (result: string): void => {
|
let stdout: any = (result: string): void => {
|
||||||
const appendStr: string = `${result}`;
|
const appendStr: string = `${result} ${lineEnding}`;
|
||||||
completeOutput += appendStr;
|
completeOutput += appendStr;
|
||||||
fs.appendFileSync(dryrunFile, appendStr);
|
fs.appendFileSync(dryrunFile, appendStr);
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче