Replies: 1 comment 1 reply
-
Hey! What's they recommended method of installation? I couldn't find anything myself after taking a quick look 😕. The Go manager is built around the usual ---@async
---@param ctx InstallContext
install = function (ctx)
ctx.go { "install", "--ldflags", [['-linkmode external -extldflags "-static"]], "./cmd/qml-lsp" }
end) With that said, I'd really prefer if there was a more streamlined (and more importantly recommended by authors) way to install it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to create a package for qml-lsp. I would just use
mason-core.managers.go.packages
and pass in the Git repository, but just runninggo install
from the repository root won't installqml-lsp
, because theqml-lsp
Go files are incmd/qml-lsp
. I need to run something like this instead:Would it be possible to do this while still using the Go manager?
Beta Was this translation helpful? Give feedback.
All reactions