Skip to content

Commit 1abb277

Browse files
committed
Use File.pathSeparator to support building on Windows (scoverage/sbt-scoverage@8ba258c)
1 parent 6849ddf commit 1abb277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/groovy/org/scoverage/ScoveragePlugin.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class ScoveragePlugin implements Plugin<PluginAware> {
201201
}.collect {
202202
it.absolutePath
203203
}
204-
scalaCompileOptions.additionalParameters.add('-Xplugin:' + pluginFiles.join(":"))
204+
scalaCompileOptions.additionalParameters.add('-Xplugin:' + pluginFiles.join(File.pathSeparator))
205205
}
206206
} else {
207207
parameters.add("-sourceroot:${project.rootDir.absolutePath}".toString())

0 commit comments

Comments
 (0)