view backup/classpath.sh @ 2055:a72cd62f9281 acme-tiny

specify nginx config path
author Violet7
date Tue, 11 Nov 2025 19:19:49 -0800
parents 45eaaf5146f3
children
line wrap: on
line source

DIR=`pwd`;
CLASSPATH=;

for file in ${DIR}/../build/luan/jars/*.jar; do
  CLASSPATH=${CLASSPATH}:${file};
done
export CLASSPATH