Mercurial Hosting > hghosting
annotate luan/install.sh @ 10:a7187a447835
restrict repo names
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 12 Jul 2022 19:40:50 -0600 |
parents | dfc36e7ed22c |
children | b14073ab9d07 |
rev | line source |
---|---|
0 | 1 set -e |
2 | |
3 cd `dirname $0` | |
4 | |
5 mkdir -p /usr/local/bin | |
6 | |
7 cat >/usr/local/bin/luan <<End | |
8 for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done | |
9 | |
10 java -classpath \$CLASSPATH luan.Luan "\$@" | |
11 End | |
12 | |
13 chmod +x /usr/local/bin/luan | |
14 | |
15 echo "the command 'luan' has been installed" |