From 4193bcbc02313c82afcf8cf9e2d14e47466cb1c3 Mon Sep 17 00:00:00 2001 From: Tomoko Uchida Date: Mon, 22 Nov 2021 18:46:28 +0900 Subject: [PATCH] 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 9d870885437..e2db65453ef 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