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 25e01cc commit 29ac2f8Copy full SHA for 29ac2f8
src/org/opensolaris/opengrok/index/Indexer.java
@@ -201,8 +201,10 @@ public static void main(String argv[]) {
201
IndexVersion.check(checkIndexVersionCfg, subFilesList);
202
} catch (IndexVersionException e) {
203
System.err.printf("Index version check failed: %s\n", e);
204
- System.err.printf("You might want to remove all data " +
205
- "under the DATA_ROOT and to reindex\n");
+ System.err.printf("You might want to remove " +
+ (subFilesList.size() > 0 ?
206
+ "data for projects " + String.join(",", subFilesList) : "all data") +
207
+ " under the DATA_ROOT and to reindex\n");
208
status = 1;
209
System.exit(status);
210
}
0 commit comments