Mercurial Hosting > luan
view scripts/install.sh @ 1637:a65802b06b01
add nginx scripts
author | fffilimonov |
---|---|
date | Thu, 16 Dec 2021 14:17:51 +0000 |
parents | d80395468b4e |
children | 39d2be9784ab |
line wrap: on
line source
set -e cd `dirname $0` mkdir -p /usr/local/bin cat >/usr/local/bin/luan <<End for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done java -classpath \$CLASSPATH luan.Luan "\$@" End chmod +x /usr/local/bin/luan echo "the command 'luan' has been installed"