blob: 79b693ae5025842bd207639d30857a36e9128d6d [file] [log] [blame]
#!/bin/sh
## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
if [ "$ARQROOT" = "" ]
then
echo "ARQROOT 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" "riotcmd.$ARQ_CMD" "$@"