diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-23 00:28:10 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-23 00:28:10 +0800 |
commit | 8d900e4126f8a5284068362f51105b999bb966fb (patch) | |
tree | fc2f9cebbbf587dfadc6da5c3e355d533d1f95e0 /script/async/async.lua | |
parent | 6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444 (diff) | |
download | lua-language-server-8d900e4126f8a5284068362f51105b999bb966fb.zip |
修改启动路径
Diffstat (limited to 'script/async/async.lua')
-rw-r--r-- | script/async/async.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/async/async.lua b/script/async/async.lua index 34716502..023672bf 100644 --- a/script/async/async.lua +++ b/script/async/async.lua @@ -62,7 +62,7 @@ end end local function run(name, arg, callback) - local dump = io.load(ROOT / 'src' / 'async' / (name .. '.lua')) + local dump = io.load(ROOT / 'script' / 'async' / (name .. '.lua')) if not dump then error(('找不到[%s]'):format(name)) end |