view backup/classpath.sh @ 1832:d55c3eaf21d7

add jar
author clarkton <ibraclarkton@gmail.com>
date Wed, 11 Dec 2024 17:17:56 +0000
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