Skip to content

Commit

Permalink
fix(installation): cargo path in devcontainer commands
Browse files Browse the repository at this point in the history
  • Loading branch information
matthri committed Dec 22, 2023
1 parent b0ddf4d commit 5baa7c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
"waitFor": "onCreateCommand",
"onCreateCommand": ".devcontainer/setup.sh",
"updateContentCommand": "cargo build",
"updateContentCommand": ". $HOME/.cargo/env && cargo build",
"postCreateCommand": "",
"postAttachCommand": {
"server": "rustlings watch"
"server": ". $HOME/.cargo/env && rustlings watch"
},
"customizations": {
"vscode": {
Expand Down

0 comments on commit 5baa7c2

Please sign in to comment.