view scripts/install.sh @ 1058:419bf9c03d84

remove HttpGenerator._method
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 08 Nov 2016 04:17:22 -0700
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"