File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
scalac-scoverage-plugin/src/main/scala/scoverage Expand file tree Collapse file tree 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 {
2626
2727 for (opt <- opts) {
2828 if (opt.startsWith(" excludedPackages:" )) {
29- options.excludedPackages = parseExclusionEntry(" excludedPackages" , opt)
29+ options.excludedPackages = parseExclusionEntry(" excludedPackages: " , opt)
3030 } else if (opt.startsWith(" excludedFiles:" )) {
31- options.excludedFiles = parseExclusionEntry(" excludedFiles" , opt)
31+ options.excludedFiles = parseExclusionEntry(" excludedFiles: " , opt)
3232 } else if (opt.startsWith(" excludedSymbols:" )) {
33- options.excludedSymbols = parseExclusionEntry(" excludedSymbols" , opt)
33+ options.excludedSymbols = parseExclusionEntry(" excludedSymbols: " , opt)
3434 } else if (opt.startsWith(" dataDir:" )) {
3535 options.dataDir = opt.substring(" dataDir:" .length)
3636 } else if (opt.startsWith(" extraAfterPhase:" ) || opt.startsWith(" extraBeforePhase:" )) {
You can’t perform that action at this time.
0 commit comments