You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2021/11/22 13:04:57 UTC

[lucene] branch branch_9_0 updated: LUCENE-10200: fix luke lauch script.

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

tomoko pushed a commit to branch branch_9_0
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/branch_9_0 by this push:
     new 95072f3  LUCENE-10200: fix luke lauch script.
95072f3 is described below

commit 95072f3b71e67e308d71a6149323bf7dd04c8f75
Author: Tomoko Uchida <to...@gmail.com>
AuthorDate: Mon Nov 22 18:46:28 2021 +0900

    LUCENE-10200: fix luke lauch script.
---
 lucene/distribution/src/binary-release/bin/luke.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lucene/distribution/src/binary-release/bin/luke.sh b/lucene/distribution/src/binary-release/bin/luke.sh
index 9d87088..e2db654 100644
--- a/lucene/distribution/src/binary-release/bin/luke.sh
+++ b/lucene/distribution/src/binary-release/bin/luke.sh
@@ -15,5 +15,5 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 
-MODULES=$(cd $(dirname $0) && pwd)
-java --module-path $MODULES/modules;$MODULES/modules-thirdparty --add-modules org.apache.logging.log4j --module lucene.luke
+MODULES=$(cd $(dirname $0)/.. && pwd)
+java --module-path $MODULES/modules:$MODULES/modules-thirdparty --add-modules org.apache.logging.log4j --module lucene.luke