lua: Remove duplicated export of filepath.Join()

This commit is contained in:
Jöran Karl 2025-04-26 20:36:55 +02:00
parent 1eef4bb3e0
commit 7e583fe6ff

View File

@ -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))