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-04 03:42:51 -04:00

17 lines
431 B
Bash
Executable File

# 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
echo "otouto has stopped. ^C to exit."
sleep 5s
done
else
echo "Lua 5.3 was not found."
echo "If you're on Ubuntu 16.04+, try running ./install-dependencies.sh."
fi