view backup/classpath.sh @ 2052:caeaf6e76467 acme-tiny

minor
author Violet7
date Tue, 11 Nov 2025 19:07:25 -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