Skip to content

Commit

Permalink
update postStartCommand names and cp invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
georglauterbach committed Aug 28, 2024
1 parent dd035b8 commit 7ddd420
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
// then into the code sub-directory to immediately download the correct components
// (that Cargo detects from the workspace setup in this directory).
"postStartCommand": {
"show version of rustup": "rustup --version",
"show version of cargo and rustc": "cd \"${containerWorkspaceFolder}/code\" ; cargo --version ; rustc --version ;",
"show version of mold": "mold --version",
"set up VS Code tasks": "mkdir -p \"${containerWorkspaceFolder}/.vscode\" && cp --no-clobber \"${containerWorkspaceFolder}/.devcontainer/vscode/\"* \"${containerWorkspaceFolder}/.vscode/\""
"rustup --version": "rustup --version",
"cargo --version && rustc --version": "cd \"${containerWorkspaceFolder}/code\" ; cargo --version ; rustc --version ;",
"mold --version": "mold --version",
"VS Code setup tasks": "mkdir -p \"${containerWorkspaceFolder}/.vscode\" && cp --update=none \"${containerWorkspaceFolder}/.devcontainer/vscode/\"* \"${containerWorkspaceFolder}/.vscode/\""
},
"customizations": {
"vscode": {
Expand Down

0 comments on commit 7ddd420

Please sign in to comment.