We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6817e5d commit 512f82eCopy full SHA for 512f82e
eng/common/mcp/azure-sdk-mcp.ps1
@@ -6,6 +6,7 @@ param(
6
[string]$Version, # Default to latest
7
[string]$InstallDirectory = (Join-Path $HOME ".azure-sdk-mcp" "azsdk"),
8
[string]$Repository = 'Azure/azure-sdk-tools',
9
+ [string]$RunDirectory = (Resolve-Path (Join-Path $PSScriptRoot .. .. ..)),
10
[switch]$Run,
11
[switch]$UpdateVsCodeConfig,
12
[switch]$Clean
@@ -56,5 +57,5 @@ $exe = Install-Standalone-Tool `
56
57
-Repository $Repository
58
59
if ($Run) {
- Start-Process -FilePath $exe -ArgumentList 'start' -NoNewWindow -Wait
60
+ Start-Process -WorkingDirectory $RunDirectory -FilePath $exe -ArgumentList 'start' -NoNewWindow -Wait
61
}
0 commit comments