mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: macos sysname is Darwin, not Mac ?
This commit is contained in:
parent
7f5d7b23b5
commit
f2d2f706f7
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ end
|
||||||
|
|
||||||
local ext = os_uname.sysname
|
local ext = os_uname.sysname
|
||||||
if os_uname.sysname == "Windows_NT" then ext = "dll"
|
if os_uname.sysname == "Windows_NT" then ext = "dll"
|
||||||
elseif os_uname.sysname == "Mac" then ext = "dylib"
|
elseif os_uname.sysname == "Darwin" then ext = "dylib"
|
||||||
else ext = "so"
|
else ext = "so"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue