Skip to content

Commit

Permalink
Fix VSCode tasks (#347)
Browse files Browse the repository at this point in the history
## Type of change
```
- [x] Bug fix
- [ ] New feature development
- [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc)
- [ ] Build/deploy pipeline (DevOps)
- [ ] Other
```

## Objective
Fix invalid path in VSCode tasks
  • Loading branch information
dani-garcia authored Nov 24, 2023
1 parent 03c5d6b commit 5407db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"command": "build",
"problemMatcher": ["$rustc"],
"options": {
"cwd": "${workspaceFolder}/bitwarden-c/"
"cwd": "${workspaceFolder}/crates/bitwarden-c/"
},
"group": {
"kind": "build",
Expand All @@ -19,7 +19,7 @@
"command": "build",
"args": ["--release"],
"options": {
"cwd": "${workspaceFolder}/bitwarden-c/"
"cwd": "${workspaceFolder}/crates/bitwarden-c/"
},
"problemMatcher": ["$rustc"],
"label": "rust: bitwarden-c release build"
Expand Down

0 comments on commit 5407db7

Please sign in to comment.