view classpath.sh @ 2141:c62dfd37545f nginx_decoupled

use regex trick to stop stop_nginx.sh from detecting itself
author Violet7
date Mon, 19 Jan 2026 20:56:48 -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