Currently, version is set to "v1.8.0" but the latest version available is "v3.2.0". Instead of manually inserting the version, it appears to be possible to instead use the following url
I just installed texlab without the version by using this url and it did indeed install version v3.2.0.
I realize that this isn't really an issue and I'm not asking for help. So maybe this should be a pull request? I don't know. Creating this issue is the first thing I ever do on a github account so I'm not sure about the culture around pull requests and issues. This seems like a small change so I'm not sure if it warrants a pull request.
The
install-texlab.sh
script downloads the texlab binary with curl applied to the following urlurl="https://github.com/latex-lsp/texlab/releases/download/$version/texlab-x86_64-$os.tar.gz"
.Currently,
version
is set to"v1.8.0"
but the latest version available is"v3.2.0"
. Instead of manually inserting the version, it appears to be possible to instead use the following urlurl="https://github.com/latex-lsp/texlab/releases/latest/download/texlab-x86_64-$os.tar.gz"
.I just installed texlab without the version by using this url and it did indeed install version
v3.2.0
.I realize that this isn't really an issue and I'm not asking for help. So maybe this should be a pull request? I don't know. Creating this issue is the first thing I ever do on a github account so I'm not sure about the culture around pull requests and issues. This seems like a small change so I'm not sure if it warrants a pull request.