Skip to content

Commit 8d3d179

Browse files
author
Gilles Grousset
committed
Updated CHANGELOG.md
1 parent 2b78e91 commit 8d3d179

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
- Restore Java 8 compatibility required by the sonar-scanner (thanks to [Peter Leibiger](https://github.com/kuhnroyal))
2525
- Restore the original analysis options file when analysis crashes (thanks to [amond](https://github.com/amondnet))
2626
- Windows support (thanks to [victorgilc](https://github.com/victorgilc)), fixes [#12](https://github.com/insideapp-oss/sonar-flutter/issues/12), [#24](https://github.com/insideapp-oss/sonar-flutter/issues/24)
27+
- Running sonar-scanner does not result no 0 exit code anymore when issues are found by dartanalyzer (thanks to [amond](https://github.com/amondnet)), fixes [#11](https://github.com/insideapp-oss/sonar-flutter/issues/11)
2728

2829
## 0.2.1
2930

dart-lang/src/main/java/fr/insideapp/sonarqube/dart/lang/issues/dartanalyzer/DartAnalyzerSensor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private List<DartAnalyzerReportIssue> buildIssues(List<String> filesWithAbsolute
118118
.ignoreExitStatus()
119119
.run()
120120
.getOutputString();
121-
121+
122122
issues.addAll(new DartAnalyzerReportParser().parse(output));
123123
} catch (Exception e) {
124124
throw new IOException(e);

0 commit comments

Comments
 (0)