Skip to content

Instantly share code, notes, and snippets.

@pjhenning
pjhenning / download-vs-code-server.sh
Last active April 19, 2022 09:41 — forked from b01/download-vs-code-server.sh
Linux script to download latest VS Code Server, good for Docker (tested in Alpine).
#!/bin/sh
set -e
current_arch=$(uname -m)
arch_str="x64"
if [[ "${current_arch}" != "x86_64" ]]; then
arch_str="arm64"
fi