File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ if ($Clean) {
26
26
}
27
27
28
28
if ($UpdateVsCodeConfig ) {
29
- $vscodeConfigPath = $PSScriptRoot + " ../../../ .vscode/ mcp.json"
29
+ $vscodeConfigPath = Join-Path $PSScriptRoot " .." " .. " " .. " " .vscode" " mcp.json"
30
30
if (Test-Path $vscodeConfigPath ) {
31
- $vscodeConfig = Get-Content - Raw $vscodeConfig | ConvertFrom-Json - AsHashtable
31
+ $vscodeConfig = Get-Content - Raw $vscodeConfigPath | ConvertFrom-Json - AsHashtable
32
32
}
33
33
else {
34
34
$vscodeConfig = @ {}
35
35
}
36
36
$serverKey = " azure-sdk-mcp"
37
37
$serverConfig = @ {
38
38
" type" = " stdio"
39
- " command" = " /home/ben/azs/azure-sdk-tools/eng/common/mcp/azure-sdk-mcp.ps1 "
39
+ " command" = " $PSCommandPath "
40
40
}
41
41
$orderedServers = [ordered ]@ {
42
42
$serverKey = $serverConfig
You can’t perform that action at this time.
0 commit comments