-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong URL for vscodium download #163
Comments
same here |
"remote.SSH.serverDownloadUrlTemplate": { |
Yes, DISTRO_VSCODIUM_RELEASE is not set. |
Was able to fix that by setting the experimental Server Binary Name setting to codium-server. I'm not done anyway, it attempts to unlock an OpenSSH key of mine which it has absolutely NO reason to unlock, and then fails like this:
Any idea why that could be? I don't need any identity to connect to the target |
Same question, I was using code-oss and noticed that there is a setting in this extension called "remote.SSH.serverDownloadUrlTemplate": "https://github.com/VSCodium/vscodium/releases/download/${version}.${release}/vscodium-reh-${os}-${arch}-${version}.${release}.tar.gz" |
This is the default option to get the link: |
While trying to connect to server there is an error
"Couldn't install vscode server on remote server, install script returned non-zero exit status";
In the console there is a strange server install command with extra dots and also this link is not exist on github vscodium
"
[Trace - 08:30:39.135] Server install command stdout:
Error downloading server from https://github.com/VSCodium/vscodium/releases/download/1.91.0./vscodium-reh-linux-x64-1.91.0..tar.gz
"
while correct link is h
ttps://github.com/VSCodium/vscodium/releases/download/1.91.0.24190/vscodium-reh-linux-x64-1.91.0.24190.tar.gz
Looks like problem is here
SERVER_DOWNLOAD_URL="$(echo "https://github.com/VSCodium/vscodium/releases/download/\${version}.\${release}/vscodium-reh-\${os}-\${arch}-\${version}.\${release}.tar.gz" | sed "s/${quality}/$DISTRO_QUALITY/g" | sed "s/${version}/$DISTRO_VERSION/g" | sed "s/${commit}/$DISTRO_COMMIT/g" | sed "s/${os}/$PLATFORM/g" | sed "s/${arch}/$SERVER_ARCH/g" | sed "s/${release}/$DISTRO_VSCODIUM_RELEASE/g")"
The text was updated successfully, but these errors were encountered: