view backup/classpath.sh @ 1982:0f59713aeaeb

fix copy and paste
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 27 Jun 2025 22:27:40 -0600
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