Skip to content

Commit

Permalink
repo: fix launch configurations for ovsx (#12731)
Browse files Browse the repository at this point in the history
The commit fixes the launch configurations when referencing `ovsx-router-config.json` to use the proper path with respect to the `workspaceFolder`.

Signed-off-by: vince-fugnitto <[email protected]>
  • Loading branch information
vince-fugnitto authored Jul 24, 2023
1 parent a8c4954 commit 2b4fb4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"--remote-debugging-port=9222",
"--no-app-auto-install",
"--plugins=local-dir:../../plugins",
"--ovsx-router-config=examples/ovsx-router-config.json"
"--ovsx-router-config=${workspaceFolder}/examples/ovsx-router-config.json"
],
"env": {
"NODE_ENV": "development"
Expand Down Expand Up @@ -65,7 +65,7 @@
"--app-project-path=${workspaceFolder}/examples/browser",
"--plugins=local-dir:plugins",
"--hosted-plugin-inspect=9339",
"--ovsx-router-config=examples/ovsx-router-config.json"
"--ovsx-router-config=${workspaceFolder}/examples/ovsx-router-config.json"
],
"env": {
"NODE_ENV": "development"
Expand Down

0 comments on commit 2b4fb4b

Please sign in to comment.