Skip to content

Instantly share code, notes, and snippets.

@SeedyROM
Created February 9, 2018 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeedyROM/3ebca2c8e31b7057a645ef8e0c6f6bda to your computer and use it in GitHub Desktop.
Save SeedyROM/3ebca2c8e31b7057a645ef8e0c6f6bda to your computer and use it in GitHub Desktop.
A quick shell script to update VSCode on Linux.
# Update VS Code.
function update-vscode() {
wget https://vscode-update.azurewebsites.net/latest/linux-deb-x64/stable -O /tmp/code_latest_amd64.deb
sudo dpkg -i /tmp/code_latest_amd64.deb
}
update-vscode
@SeedyROM
Copy link
Author

SeedyROM commented Feb 9, 2018

Hope this make some people happy.

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