view backup/classpath.sh @ 1851:9d093f14e240 default tip

clear global_callables on site close
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 22 Feb 2025 23:38:40 -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