From c7fa78c3a491d741daa03ba01c6984a151c579ee Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 9 Oct 2023 10:00:54 +0200 Subject: [PATCH] Make luapath script return the whole export So it can now be called as $(luapath .) in the shell --- bin/luapath | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/luapath b/bin/luapath index 3048c5f..989e703 100755 --- a/bin/luapath +++ b/bin/luapath @@ -1,3 +1,3 @@ #!/bin/sh -echo "$1/?.lua;$1/?/init.lua" +echo 'export LUA_PATH="'"$1/?.lua;$1/?/init.lua;;"'"'