Mercurial Hosting > luan
changeset 1823:36dfc31fd607
install fix
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 07 Aug 2024 18:29:58 -0600 |
parents | aeaf2b65c005 |
children | 92860f763715 |
files | scripts/install.sh |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
diff -r aeaf2b65c005 -r 36dfc31fd607 scripts/install.sh --- a/scripts/install.sh Tue Jul 09 12:46:27 2024 -0600 +++ b/scripts/install.sh Wed Aug 07 18:29:58 2024 -0600 @@ -10,6 +10,7 @@ #!/bin/bash for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done +CLASSPATH=$(echo -n $CLASSPATH | sed 's/^://') java -classpath \$CLASSPATH luan.Luan "\$@" End