view backup/classpath.sh @ 1844:9147ce7f5b72 default tip

FileClassLoader use SoftCacheMap
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 02 Feb 2025 04:55:02 -0700
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