Mercurial Hosting > luan
view scripts/install.sh @ 1258:e4d7a3114fa8
support "Content-Type: application/json; charset=utf-8"
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 20 Sep 2018 22:11:11 -0600 |
parents | fec01f044474 |
children | 04482e2a6ca3 |
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"