You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2023/02/17 15:59:13 UTC

[jackrabbit-oak] branch trunk updated: OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction (#852)

This is an automated email from the ASF dual-hosted git repository.

reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 70e9bc90e8 OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction (#852)
70e9bc90e8 is described below

commit 70e9bc90e8fe4451d7d9abd69cf19d6f51f28f6c
Author: Julian Reschke <re...@apache.org>
AuthorDate: Fri Feb 17 16:59:08 2023 +0100

    OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction (#852)
---
 .../org/apache/jackrabbit/oak/console/commands/OakHelpCommand.groovy    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console/commands/OakHelpCommand.groovy b/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console/commands/OakHelpCommand.groovy
index 6cd2d08ec8..703d409b88 100644
--- a/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console/commands/OakHelpCommand.groovy
+++ b/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console/commands/OakHelpCommand.groovy
@@ -38,7 +38,7 @@ class OakHelpCommand extends CommandSupport{
 
     protected List createCompleters() {
         return [
-                new CommandNameCompleter(registry),
+                new CommandNameCompleter(registry, false),
                 null
         ]
     }