diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-20 12:12:25 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-20 12:12:25 +0300 |
commit | 1a12f69466d29721f8fa12c92850096339088f8c (patch) | |
tree | f3a8df560f0da8c13b84fd3e252e65ce3b2527ad /ilua-wrapper.sh | |
parent | 9e0da3df9c46cf1825ecf2674cc2ef521d3a8b57 (diff) | |
download | applause2-1a12f69466d29721f8fa12c92850096339088f8c.tar.gz |
ilua-wrapper: FreeBSD compatibility
Diffstat (limited to 'ilua-wrapper.sh')
-rwxr-xr-x | ilua-wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ilua-wrapper.sh b/ilua-wrapper.sh index b5494f8..51bf382 100755 --- a/ilua-wrapper.sh +++ b/ilua-wrapper.sh @@ -4,5 +4,5 @@ # Also, it's useful as you do not have to change the directory before invoking ILua. # Thirdly, if you create a symbolic link to lua in a Python environment of ILua, this invoke # Applause by default and it will even work with Jupyter Notebooks without further tweaks. -cd $(dirname $(readlink -m "$0")) +cd $(dirname $(readlink "$0")) exec ./applause $APPLAUSE_OPTS "$@" |