2
2
镜像自地址 https://github.com/Hilbis/Hilbish 已同步 2025-07-13 06:12:03 +00:00

fix: remove / at the end of xdg data path

这个提交包含在:
sammyette 2021-10-17 23:13:53 -04:00
父节点 9f523ba3c0
当前提交 87fcdd3c10
找不到此签名对应的密钥
GPG 密钥 ID: 50EE40A2809851F5

查看文件

@ -39,7 +39,7 @@ func HilbishLoader(L *lua.LState) int {
xdg := L.NewTable()
L.SetField(xdg, "config", lua.LString(confDir))
L.SetField(xdg, "data", lua.LString(getenv("XDG_DATA_HOME", homedir + "/.local/share/")))
L.SetField(xdg, "data", lua.LString(getenv("XDG_DATA_HOME", homedir + "/.local/share")))
L.SetField(mod, "xdg", xdg)
util.Document(L, mod, "A miscellaneous sort of \"core\" API for things that relate to the shell itself and others.")