Skip to content

VS Code Server example no longer works #1080

@rcjsuen

Description

@rcjsuen

INSTALL_TARGET=unknown-linux-gnu
if [ ! -e "$INSTALL_LOCATION"/code-server ]; then
# Adapted from https://aka.ms/install-vscode-server/setup.sh
install_arch=x86_64
arch=$(uname -m)
if [ $arch = "aarch64" ] || [ $arch = "arm64" ]; then
install_arch=aarch64
fi
install_url=https://aka.ms/vscode-server-launcher/$install_arch-$INSTALL_TARGET
echo "Installing from $install_url"
mkdir -p "$INSTALL_LOCATION"
if type curl > /dev/null 2>&1; then
curl -sSLf $install_url -o "$INSTALL_LOCATION"/code-server
elif type wget > /dev/null 2>&1; then
wget -q $install_url -O "$INSTALL_LOCATION"/code-server

The links in the installer don't work anymore. If you run wget -q https://aka.ms/vscode-server-launcher/x86_64-unknown-linux-gnu, you will see that you have an HTML file instead of an executable.

Metadata

Metadata

Assignees

Labels

info-neededIssue requires more information from poster

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions