blob: 72a98b83b313982d768d067ee0e177c77684447c [file] [log] [blame]
#!/bin/sh
## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
if [ "$ARQROOT" = "" ]
then
echo "ARQROOT is not set" 1>&2
exit 1
fi
INIT="$ARQROOT/bin/arq_init"
if [ ! -r "$INIT" ]
then
echo "Script $INIT (\$ARQROOT/bin/arq_init) does not exist or is not readable"
exit 1
fi
. "$INIT"
exec java $JVM_ARGS $SOCKS -cp "$ARQ_CP" org.apache.jena.riot.system.LangTag "$@"