File tree 1 file changed +3
-3
lines changed
scalac-scoverage-plugin/src/main/scala/scoverage
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ class ScoveragePlugin(val global: Global) extends Plugin {
26
26
27
27
for (opt <- opts) {
28
28
if (opt.startsWith(" excludedPackages:" )) {
29
- options.excludedPackages = parseExclusionEntry(" excludedPackages" , opt)
29
+ options.excludedPackages = parseExclusionEntry(" excludedPackages: " , opt)
30
30
} else if (opt.startsWith(" excludedFiles:" )) {
31
- options.excludedFiles = parseExclusionEntry(" excludedFiles" , opt)
31
+ options.excludedFiles = parseExclusionEntry(" excludedFiles: " , opt)
32
32
} else if (opt.startsWith(" excludedSymbols:" )) {
33
- options.excludedSymbols = parseExclusionEntry(" excludedSymbols" , opt)
33
+ options.excludedSymbols = parseExclusionEntry(" excludedSymbols: " , opt)
34
34
} else if (opt.startsWith(" dataDir:" )) {
35
35
options.dataDir = opt.substring(" dataDir:" .length)
36
36
} else if (opt.startsWith(" extraAfterPhase:" ) || opt.startsWith(" extraBeforePhase:" )) {
You can’t perform that action at this time.
0 commit comments