From c19f73b9f0f8206a4d2a4f45ee5f36768ce4bf17 Mon Sep 17 00:00:00 2001 From: flange <38500-flange@users.noreply.git.rwth-aachen.de> Date: Tue, 18 Feb 2025 10:55:09 +0100 Subject: [PATCH] correct Java classpath in load and textindex scripts --- scripts/load.sh | 2 +- scripts/textindex.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/load.sh b/scripts/load.sh index df63483..6cbf0f3 100755 --- a/scripts/load.sh +++ b/scripts/load.sh @@ -14,4 +14,4 @@ FILES="$@" # See https://jena.apache.org/documentation/tdb2/tdb2_cmds.html#tdb2tdbloader # for a description of tdb2.tdbloader. # -java -cp $FUSEKI_HOME/fuseki-server.jar:/javalibs/* tdb2.tdbloader --desc=$ASSEMBLER $FILES +java -cp $FUSEKI_HOME/fuseki-server.jar tdb2.tdbloader --desc=$ASSEMBLER $FILES diff --git a/scripts/textindex.sh b/scripts/textindex.sh index b8056c8..c47e775 100755 --- a/scripts/textindex.sh +++ b/scripts/textindex.sh @@ -12,4 +12,4 @@ ASSEMBLER=$1 # See https://jena.apache.org/documentation/query/text-query.html#step-2---build-the-text-index # for a description of jena.textindexer. # -java -cp $FUSEKI_HOME/fuseki-server.jar:/javalibs/* jena.textindexer --desc=$ASSEMBLER +java -cp $FUSEKI_HOME/fuseki-server.jar jena.textindexer --desc=$ASSEMBLER -- GitLab