view backup/classpath.sh @ 1744:db52c29605e2

support svg
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 13 Nov 2022 19:26:41 -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