10 lines
117 B
Plaintext
Executable File
10 lines
117 B
Plaintext
Executable File
#/bin/sh
|
|
if ! command -v lua &> /dev/null
|
|
then
|
|
echo "lua could not be found"
|
|
exit 1
|
|
else
|
|
lua main.lua "$@"
|
|
fi
|
|
|