12 lines
164 B
Bash
Executable File
12 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd tg
|
|
|
|
if [ ! -f ./telegram ]; then
|
|
echo "Compile telegram first:"
|
|
echo "cd tg && ./configure && make"
|
|
exit
|
|
fi
|
|
|
|
./telegram -s ../bot/bot.lua
|