Mercurial Hosting > luan
view scripts/install.sh @ 1930:2b5eccebddd9
increase read timeout for sse
author | fffilimonov |
---|---|
date | Fri, 02 May 2025 14:20:56 +0300 |
parents | 0156fe64a610 |
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"