view backup/classpath.sh @ 1833:e6a5f178e5f9

remove discord
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 22 Dec 2024 18:46:25 -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