We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd3709d commit bf37f36Copy full SHA for bf37f36
opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java
@@ -66,6 +66,7 @@
66
import org.opengrok.indexer.util.Executor;
67
import org.opengrok.indexer.util.OptionParser;
68
import org.opengrok.indexer.util.Statistics;
69
+import org.opengrok.indexer.web.Util;
70
71
/**
72
* Creates and updates an inverted source index as well as generates Xref, file
@@ -1018,7 +1019,7 @@ public void prepareIndexer(RuntimeEnvironment env,
1018
1019
break;
1020
}
1021
for (Project p : env.getProjectList()) {
- if (p.getPath().equals(projectPath)) {
1022
+ if (p.getPath().equals(Util.fixPathIfWindows(projectPath))) {
1023
projects.add(p);
1024
1025
0 commit comments