Skip to content

Instantly share code, notes, and snippets.

@TheWebDevel
Last active January 11, 2021 16:07
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save TheWebDevel/2bcd1a0c328a1063bc6b7f4ea6d2f3e4 to your computer and use it in GitHub Desktop.
Save TheWebDevel/2bcd1a0c328a1063bc6b7f4ea6d2f3e4 to your computer and use it in GitHub Desktop.
A shell script to update VS Code on Ubuntu
# Download the latest stable version of VS Code and store it in a temporary location
wget https://vscode-update.azurewebsites.net/latest/linux-deb-x64/stable -O /tmp/code_latest_amd64.deb
# Now, install the newly downloaded VS Code
sudo dpkg -i /tmp/code_latest_amd64.deb
@Ishidres
Copy link

In case, anyone needs the link for the .tar-gz version, it's:
https://update.code.visualstudio.com/latest/linux-x64/stable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment