view classpath.sh @ 2157:484d2b42f2d1 nginx_sites_addon

only include nginx.conf in nginx_sites in nginx.conf.luan
author Violet7
date Tue, 27 Jan 2026 19:51:41 -0800
parents 64c8ba65345f
children
line wrap: on
line source

LUAN_HOME=`pwd`

CLASSPATH=$LUAN_HOME/src
CLASSPATH=$CLASSPATH:$LUAN_HOME/slf4j/src

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

export CLASSPATH