diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-10-18 16:17:06 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-10-18 16:17:06 +0800 |
commit | 576873c56e029ee08a7892dca0381bdd5ff4372c (patch) | |
tree | 16f53bd4c4fd0e558b18ddb14ab78fa683d0585e /make | |
parent | b1eb4fd16c62c2c9b12375f6e50ed5dd4df6ed46 (diff) | |
download | lua-language-server-576873c56e029ee08a7892dca0381bdd5ff4372c.zip |
fix `package.path`
Diffstat (limited to 'make')
-rw-r--r-- | make/bootstrap.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/make/bootstrap.lua b/make/bootstrap.lua index 5d05de7e..f01646a0 100644 --- a/make/bootstrap.lua +++ b/make/bootstrap.lua @@ -55,7 +55,6 @@ local root; do end
package.path = table.concat({
- package.path,
root .. "/script/?.lua",
root .. "/script/?/init.lua",
}, ";"):gsub('/', package.config:sub(1,1))
|