Add ./maze wrapper shell script to call the lua script
It's nice to have a lazy entrance point :P
This commit is contained in:
parent
97a02f9e9d
commit
273ca322a3
1 changed files with 4 additions and 0 deletions
4
maze
Executable file
4
maze
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
cd "$(dirname "$(readlink -f "$0")")" || { echo "Error: Failed to cd to script directory" >&2; exit 1; };
|
||||
|
||||
exec lua main.lua "${@}";
|
Loading…
Reference in a new issue