Skip to content

Commit 0793a46

Browse files
authored
Merge pull request #195 from scoverage/fix_194
Use File.pathSeparator to support building on Windows (https://github…
2 parents 6849ddf + 1abb277 commit 0793a46

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)