Skip to content

Commit

Permalink
Merge pull request #195 from scoverage/fix_194
Browse files Browse the repository at this point in the history
Use File.pathSeparator to support building on Windows (https://github…
  • Loading branch information
maiflai authored May 20, 2023
2 parents 6849ddf + 1abb277 commit 0793a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/org/scoverage/ScoveragePlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class ScoveragePlugin implements Plugin<PluginAware> {
}.collect {
it.absolutePath
}
scalaCompileOptions.additionalParameters.add('-Xplugin:' + pluginFiles.join(":"))
scalaCompileOptions.additionalParameters.add('-Xplugin:' + pluginFiles.join(File.pathSeparator))
}
} else {
parameters.add("-sourceroot:${project.rootDir.absolutePath}".toString())
Expand Down

0 comments on commit 0793a46

Please sign in to comment.