fix(installation): cargo path in devcontainer commands

This commit is contained in:
Matthias Richter 2023-11-18 23:46:43 +01:00
parent b0ddf4d704
commit 5baa7c2d62

View file

@ -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": {