view backup/classpath.sh @ 1916:3fc4b465e9b0

File_chooser
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 17 Apr 2025 23:27:42 -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