Skip to content

Instantly share code, notes, and snippets.

View panwarab's full-sized avatar
🎯

Abhiroj Panwar panwarab

🎯
  • Adobe Systems
  • Noida, Uttar Pradesh
View GitHub Profile
@panwarab
panwarab / download-vs-code-server.sh
Created December 20, 2021 10:07 — 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
# You can get the latest commit SHA by looking at the latest tagged commit here: https://github.com/microsoft/vscode/releases
commit_sha="08a217c4d27a02a5bcde898fd7981bda5b49391b"
archive="vscode-server-linux-x64.tar.gz"
owner='microsoft'
repo='vscode'
# Auto-Get the latest commit sha via command line.