File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" + "- "
You can’t perform that action at this time.
0 commit comments