view backup/classpath.sh @ 2034:d718511fc69f acme-tiny

Begin work on moving to tiny-acme.
author Violet7
date Tue, 04 Nov 2025 20:28:50 -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