File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/nextflow/src/main/groovy/nextflow/script/parser/v2 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -237,13 +237,13 @@ class StandardErrorListener implements ErrorListener {
237
237
term. newline()
238
238
term. bold(). a(" Nextflow linting complete!" ). reset(). newline()
239
239
if ( summary. filesWithErrors > 0 ) {
240
- term. fg(Ansi.Color . RED ). a(" ❌ ${ summary.filesWithErrors} file${ summary.filesWithErrors==1 ? '' : 's'} had ${ summary.errors} error${ summary.errors==1 ? '' : 's'} " ). newline()
240
+ term. fg(Ansi.Color . RED ). a(" ❌ ${ summary.filesWithErrors} file${ summary.filesWithErrors==1 ? '' : 's'} had ${ summary.errors} error${ summary.errors==1 ? '' : 's'} " ). reset() . newline()
241
241
}
242
242
if ( summary. filesWithoutErrors > 0 ) {
243
243
term. fg(Ansi.Color . GREEN ). a(" ✅ ${ summary.filesWithoutErrors} file${ summary.filesWithoutErrors==1 ? '' : 's'} had no errors" )
244
244
if ( summary. filesFormatted > 0 )
245
245
term. fg(Ansi.Color . BLUE ). a(" (${ summary.filesFormatted} formatted)" )
246
- term. newline()
246
+ term. reset() . newline()
247
247
}
248
248
if ( summary. filesWithErrors == 0 && summary. filesWithoutErrors == 0 ) {
249
249
term. a(" No files found to process" ). newline()
You can’t perform that action at this time.
0 commit comments