51 lines
924 B
Bash
51 lines
924 B
Bash
#!/usr/bin/env bash
|
|
|
|
THIS_DIR=$(cd $(dirname $0); pwd)
|
|
cd $THIS_DIR
|
|
|
|
install_luarocks() {
|
|
git clone https://github.com/keplerproject/luarocks.git
|
|
cd luarocks
|
|
git checkout tags/v2.2.1 # Current stable
|
|
|
|
PREFIX="$THIS_DIR/.luarocks"
|
|
|
|
./configure --prefix=$PREFIX --sysconfdir=$PREFIX/luarocks --force-config
|
|
|
|
RET=$?; if [ $RET -ne 0 ];
|
|
then echo "Error. Exiting."; exit $RET;
|
|
fi
|
|
|
|
make build && make install
|
|
RET=$?; if [ $RET -ne 0 ];
|
|
then echo "Error. Exiting.";exit $RET;
|
|
fi
|
|
|
|
cd ..
|
|
rm -rf luarocks
|
|
}
|
|
|
|
install_rocks() {
|
|
|
|
./.luarocks/bin/luarocks install luasec
|
|
RET=$?; if [ $RET -ne 0 ];
|
|
then echo "Error. Exiting."; exit $RET;
|
|
fi
|
|
|
|
./.luarocks/bin/luarocks install luasocket
|
|
RET=$?; if [ $RET -ne 0 ];
|
|
then echo "Error. Exiting."; exit $RET;
|
|
fi
|
|
|
|
}
|
|
|
|
if [ "$1" = "install" ]; then
|
|
install_luarocks
|
|
install_rocks
|
|
else
|
|
while true; do
|
|
lua bot.lua
|
|
sleep 5s
|
|
done
|
|
fi
|