Skip to content

Instantly share code, notes, and snippets.

@aapis
Created March 19, 2019 18:20
Show Gist options
  • Save aapis/0011161a57a398c44b7a27d6f113985e to your computer and use it in GitHub Desktop.
Save aapis/0011161a57a398c44b7a27d6f113985e to your computer and use it in GitHub Desktop.
Visual Studio Code task for updating VSC on Debian
{
"version": "2.0.0",
"tasks": [
{
"label": "Update Visual Studio Code",
"type": "shell",
"command": "wget --user-agent Mozilla --content-disposition -E -c https://go.microsoft.com/fwlink/?LinkID=760868 && mkdir -p /tmp/vsc-updates && mv *.deb /tmp/vsc-updates/ && sudo apt install /tmp/vsc-updates/*.deb",
"problemMatcher": []
}
]
}
@aapis
Copy link
Author

aapis commented Mar 19, 2019

I'm not sure if the LinkID changes between versions yet.

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