diff options
author | actboy168 <actboy168@gmail.com> | 2019-06-10 16:29:41 +0800 |
---|---|---|
committer | actboy168 <actboy168@gmail.com> | 2019-06-10 16:29:41 +0800 |
commit | aa77a6514802a40bde972647b84adf95e375d4ae (patch) | |
tree | 87d5f0cf0a13028c90b4dee46619389306173929 /make/copy.lua | |
parent | 7d1a60dfcbffd163c56cc319bd13a51e8ff405b1 (diff) | |
download | lua-language-server-aa77a6514802a40bde972647b84adf95e375d4ae.zip |
修正编译错误
Diffstat (limited to 'make/copy.lua')
-rw-r--r-- | make/copy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/copy.lua b/make/copy.lua index 253c1332..0d21d97f 100644 --- a/make/copy.lua +++ b/make/copy.lua @@ -45,7 +45,7 @@ local sourceDir = fs.path(".") local extensionDirName = getExtensionDirName(packageDir) local extensionDir = fs.path(extensionPath) / extensionDirName if not fs.exists(extensionDir) then - error(extensionDir .. "is not installed.") + error("`" .. extensionDir .. "` is not installed.") end if pcall(fs.remove_all, extensionDir / "server" / "bin-bak") then |