Simplify "Configure Build Tools" devcontainer step. (#62955)

This commit is contained in:
Daniel Rosenwasser 2026-01-05 14:42:08 -08:00 committed by GitHub
parent f3770c9b89
commit 9d364978d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": {
"Configure Build Tools": "sudo corepack enable npm; sudo npm install -g hereby; npm ci",
"Configure Build Tools": "sudo npm install -g hereby; npm ci",
"Install pprof": "go install github.com/google/pprof@latest",
"Install Graphviz": "sudo apt install graphviz"
},