Mercurial Hosting > luan
view scripts/install.sh @ 1831:8f9ae295bf6a default tip
add Hosted.authorize
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 26 Sep 2024 15:07:45 -0600 |
parents | 36dfc31fd607 |
children |
line wrap: on
line source
#!/bin/bash set -e cd `dirname $0` mkdir -p /usr/local/bin cat >/usr/local/bin/luan <<End #!/bin/bash for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done CLASSPATH=$(echo -n $CLASSPATH | sed 's/^://') java -classpath \$CLASSPATH luan.Luan "\$@" End chmod +x /usr/local/bin/luan echo "the command 'luan' has been installed"