-
Notifications
You must be signed in to change notification settings - Fork 328
Open
Labels
info-neededIssue requires more information from posterIssue requires more information from poster
Description
cli/example-usage/tool-vscode-server/server/init-vscode-server.sh
Lines 4 to 19 in e47ebf9
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 posterIssue requires more information from poster