1
0
mirror of https://github.com/marek-g/it9910hd_fusefs.git synced 2026-05-05 18:01:19 +09:00

Rename workspaceRoot to workspaceFolder, as the former has been deprecated. Add "workspaceFolder" back in as environment variable (needed due to the SELinux workaround used).

This commit is contained in:
2022-02-12 15:16:54 +09:00
parent 175e9f3435
commit 1380d7c03a
2 changed files with 7 additions and 2 deletions

View File

@@ -21,6 +21,10 @@
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z"
],
"containerEnv": {
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
},
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.executable": "/usr/bin/lldb",

5
.vscode/launch.json vendored
View File

@@ -5,11 +5,12 @@
"name": "it9910hd_fusefs",
"request": "launch",
"type": "gdb",
"target": "${workspaceRoot}/target/debug/it9910hd_fusefs",
"cwd": "${workspaceRoot}",
"target": "${workspaceFolder}/target/debug/it9910hd_fusefs",
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "1"
},
"arguments": "./video",
"preLaunchTask": "build_it9910hd_fusefs"
},
]