This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/launch.sh
2016-09-07 16:16:27 +02:00

22 lines
612 B
Bash
Executable File

#!/bin/sh
# Run Brawlbot.
# If none, give an error and a friendly suggestion.
# If Lua was found, restart Brawlbot five seconds after halting each time.
if type lua5.2 >/dev/null 2>/dev/null; then
while true; do
lua5.2 main.lua
echo "Brawlbot wurde angehalten. ^C zum Beenden."
sleep 5s
done
elif type lua >/dev/null 2>/dev/null; then
while true; do
lua main.lua
echo "Brawlbot wurde angehalten. ^C zum Beenden."
sleep 5s
done
else
echo "Lua nicht gefunden."
echo "Falls du Ubuntu verwendest, führe vorher ./install-dependencies.sh aus."
fi