view backup/classpath.sh @ 1935:12957bc6fa07

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 03 May 2025 12:17:35 -0600 (6 weeks ago)
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