Created
March 19, 2019 18:20
-
-
Save aapis/0011161a57a398c44b7a27d6f113985e to your computer and use it in GitHub Desktop.
Visual Studio Code task for updating VSC on Debian
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
{ | |
"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": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure if the LinkID changes between versions yet.