diff options
author | xl000 <l_xb@foxmail.com> | 2019-04-17 01:16:12 +0800 |
---|---|---|
committer | xl000 <l_xb@foxmail.com> | 2019-04-17 01:16:12 +0800 |
commit | ae53ebf48299680b8906e848903fb32d56ee90a5 (patch) | |
tree | b4c2c5a410b8cff43e46f22101e372253b6472a5 /server/publish.lua | |
parent | e676b97ee6c54ac843b51f2d6062689a428f0c28 (diff) | |
download | lua-language-server-ae53ebf48299680b8906e848903fb32d56ee90a5.zip |
Unix-like系统路径问题,osx下测试通过
Diffstat (limited to 'server/publish.lua')
-rw-r--r-- | server/publish.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/publish.lua b/server/publish.lua index 3b4d4420..c7cbefcc 100644 --- a/server/publish.lua +++ b/server/publish.lua @@ -63,7 +63,7 @@ local function copyFiles(root, out) end local function runTest(root) - local exe = root / 'bin' / 'lua-language-server.exe' + local exe = root / 'bin' / 'lua-language-server' local test = root / 'test' / 'main.lua' local lua = subprocess.spawn { exe, |