Last active
January 11, 2021 16:07
-
-
Save TheWebDevel/2bcd1a0c328a1063bc6b7f4ea6d2f3e4 to your computer and use it in GitHub Desktop.
A shell script to update VS Code on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case, anyone needs the link for the .tar-gz version, it's:
https://update.code.visualstudio.com/latest/linux-x64/stable