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

17 lines
431 B
Bash
Raw Normal View History

2016-09-04 09:42:51 +02:00
# Launch otouto, after checking for Lua 5.3.
# Restart otouto five seconds after halted.
#!/bin/sh
# Ubuntu 16.04 seems to not link "lua" to lua5.3.
if type lua5.3 >/dev/null 2>/dev/null; then
while true; do
lua5.3 main.lua
2016-09-04 09:42:51 +02:00
echo "otouto has stopped. ^C to exit."
sleep 5s
done
else
2016-09-04 09:42:51 +02:00
echo "Lua 5.3 was not found."
echo "If you're on Ubuntu 16.04+, try running ./install-dependencies.sh."
fi