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:58:36 UTC

[jackrabbit-oak] branch OAK-10117 created (now b84a41ae4f)

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

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


      at b84a41ae4f OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction

This branch includes the following new commits:

     new b84a41ae4f OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[jackrabbit-oak] 01/01: OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b84a41ae4fe85b5bd0558554481bbe01b3213fcd
Author: Julian Reschke <re...@apache.org>
AuthorDate: Fri Feb 17 16:58:30 2023 +0100

    OAK-10117: oak-run groovy console - 'fix' CommandNameCompleter construction
---
 .../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
         ]
     }