You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -Xplugin option expects a classpath string with multiple paths
separated by a semicolon or colon depending on this operating system.
However, this currently always uses a colon, which doesn't work on
windows. This means scalac cannot find the scoverage plugin jars and
leads to errors about "bad options".
This modifies the -Xplugin logic to use File.pathSeparator when building
the Xplugin classpath, allowing it to work regardless of operating
system.
Also modifies excludedPackages when on windows to replace unix file
separators with escaped windows file separators. Modifies tests to
remove unnecessary escaping of unix separators.
Closes#440
0 commit comments