fix(installation): asset name is incorrect in linux (#491)
This commit is contained in:
parent
90c5f724e6
commit
ff316f9110
2
build.sh
2
build.sh
@ -13,7 +13,7 @@ TARGET_DIR="${SCRIPT_DIR}/build"
|
||||
# Get the artifact download URL based on the platform and Lua version
|
||||
case "$(uname -s)" in
|
||||
Linux*)
|
||||
PLATFORM="linux"
|
||||
PLATFORM="ubuntu"
|
||||
;;
|
||||
Darwin*)
|
||||
PLATFORM="macos"
|
||||
|
@ -132,7 +132,7 @@ M.safe_keymap_set = function(mode, lhs, rhs, opts)
|
||||
---@cast modes -string
|
||||
|
||||
---@param m string
|
||||
modes = vim.tbl_filter(function(m) return not (Keys.have and Keys:have(lhs, m)) end, modes)
|
||||
modes = vim.tbl_filter(function(m) return not (Keys and Keys.have and Keys:have(lhs, m)) end, modes)
|
||||
|
||||
-- don't create keymap if a lazy keys handler exists
|
||||
if #modes > 0 then
|
||||
|
Loading…
x
Reference in New Issue
Block a user