view classpath.sh @ 1341:a015a0b5c388

add Html.decode(), Lucene.count_tokens(), lucene boosts, Sql.database.set()
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Feb 2019 08:14:40 -0700
parents f2eb8295033f
children 1437fb1f0956
line wrap: on
line source

LUAN_HOME=`pwd`

CLASSPATH=$LUAN_HOME/src

for file in $LUAN_HOME/lib/*; do
	CLASSPATH=$CLASSPATH:$file;
done

export CLASSPATH