fix groovyc tests?

This commit is contained in:
peter
2015-01-09 19:27:31 +01:00
parent f58dbe8b3f
commit cf1ed92dcb
@@ -63,7 +63,7 @@ class InProcessGroovyc {
@Override
public boolean shouldCacheData(@NotNull URL url) {
try {
String file = new File(url.toURI()).getPath();
String file = FileUtil.toCanonicalPath(new File(url.toURI()).getPath());
for (String output : outputs) {
if (FileUtil.startsWith(output, file)) {
return false;