Skip to content

Commit

Permalink
[SHRINKRES-121] WarMavenImporter fix for windows
Browse files Browse the repository at this point in the history
[SHRINKRES-121] WarMavenImporter fix for windows
  • Loading branch information
mmatloka authored and ALRubinger committed Mar 24, 2013
1 parent a220f24 commit 437fc48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ protected String[] getFilesToIncludes(File baseDir, String[] includes, String[]

final String[] includedFiles = scanner.getIncludedFiles();
for (int i = 0; i < includedFiles.length; i++) {
includedFiles[i] = "/" + includedFiles[i];
includedFiles[i] = "/" + includedFiles[i].replace(File.separator, "/");
}
return includedFiles;

Expand Down

0 comments on commit 437fc48

Please sign in to comment.