From 7e583fe6ff199425900b927444cb98c9bbd3b5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6ran=20Karl?= <3951388+JoeKar@users.noreply.github.com> Date: Sat, 26 Apr 2025 20:36:55 +0200 Subject: [PATCH] lua: Remove duplicated export of `filepath.Join()` --- internal/lua/lua.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/lua/lua.go b/internal/lua/lua.go index 35334ccc..58347f2f 100644 --- a/internal/lua/lua.go +++ b/internal/lua/lua.go @@ -427,7 +427,6 @@ func importPath() *lua.LTable { func importFilePath() *lua.LTable { pkg := L.NewTable() - L.SetField(pkg, "Join", luar.New(L, filepath.Join)) L.SetField(pkg, "Abs", luar.New(L, filepath.Abs)) L.SetField(pkg, "Base", luar.New(L, filepath.Base)) L.SetField(pkg, "Clean", luar.New(L, filepath.Clean))