From 0711b45d0d8fb8c6d393fe6951ce29c76c1a5095 Mon Sep 17 00:00:00 2001 From: Vincent COUVERT Date: Sat, 29 Mar 2014 14:58:08 +0100 Subject: [PATCH] Fix path after https://codereview.scilab.org/#/c/14176/ Change-Id: Iefd64de9fd1ee6827bd8c7e3d07327b971f6d7fa --- .../scilab/modules/helptools/JarOnlyConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scilab/modules/helptools/src/java/org/scilab/modules/helptools/JarOnlyConverter.java b/scilab/modules/helptools/src/java/org/scilab/modules/helptools/JarOnlyConverter.java index 1d192a0..0abd213 100644 --- a/scilab/modules/helptools/src/java/org/scilab/modules/helptools/JarOnlyConverter.java +++ b/scilab/modules/helptools/src/java/org/scilab/modules/helptools/JarOnlyConverter.java @@ -72,7 +72,7 @@ public class JarOnlyConverter extends ContainerConverter { Helpers.deleteDirectory(outputJavaHelp); File directory = new File(outputJavaHelp); directory.mkdirs(); - String[] args = new String[] {"-db", outputJavaHelp + File.separator + "JavaHelpSearch", "-nostopwords", "."}; + String[] args = new String[] {"-db", outputJavaHelp, "-nostopwords", "."}; indexer.compile(args); } catch (Exception e) { -- 1.7.9.5