Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 25fbc56

Browse files
authoredOct 22, 2024
Fix and simplify postCreateCommands. (microsoft#16)
1 parent a992408 commit 25fbc56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
// Use 'postCreateCommand' to run commands after the container is created.
1515
"postCreateCommand": {
16-
"Configure Node.js Build Tools": "sudo corepack enable npm; sudo npm install -g hereby; npm ci",
16+
"Configure Node.js Build Tools": "npm install -g hereby; npm ci",
1717
"Initialize Submodules": "git submodule update --init --recursive; cd _submodules/TypeScript; npm ci",
1818
"Install pprof": "go install github.com/google/pprof@latest",
19-
"Install Graphviz": "sudo apt update; sudo apt install graphviz"
19+
"Install Graphviz": "sudo apt update -y; sudo apt install -y graphviz"
2020
},
2121

2222
// Configure tool-specific properties.

0 commit comments

Comments
 (0)
Please sign in to comment.