Files
nel/nellie
2026-02-27 19:05:01 +00:00

8 lines
116 B
Plaintext
Executable File

#/bin/sh
if ! command -v lua &> /dev/null
then
echo "lua could not be found"
exit 1
else
lua index.lua "$@"
fi