Skip to content

Commit 38b4b16

Browse files
changed to md
1 parent 4aaaaba commit 38b4b16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/syntax_error_logger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class SyntaxErrorLogger {
1515

1616
deactivate() {
1717
if(this.activated && this.errors.length > 0){
18-
fs.writeFileSync(path.join(this.outputDir, "syntaxErrors.txt"),
18+
fs.writeFileSync(path.join(this.outputDir, "syntaxErrors.md"),
1919
"## Function(s) not found: \n - "
2020
+ this.errors.join("\n - ")
2121
+ "\n \n You can find all supported functions and how to use them [here](https://github.com/devonfw-tutorials/tutorials/wiki/Functions).\n"
@@ -32,7 +32,7 @@ export class SyntaxErrorLogger {
3232

3333
handleParseError(playbook, error) {
3434
if(this.activated) {
35-
fs.writeFileSync(path.join(this.outputDir, "syntaxErrors.txt"),
35+
fs.writeFileSync(path.join(this.outputDir, "syntaxErrors.md"),
3636
"## Error while parsing playbook: "
3737
+ playbook +
3838
"\n" + "- "

0 commit comments

Comments
 (0)