File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 17
17
Pass a specific version to get CLI for that version.
18
18
19
19
. PARAMETER InstallPath
20
- Directory to install the CLI (default: %USERPROFILE%\.aspire on Windows, `$HOME/.aspire on Unix)
20
+ Directory to install the CLI (default: %USERPROFILE%\.aspire\bin on Windows, `$HOME/.aspire/bin on Unix)
21
21
22
22
. PARAMETER Version
23
23
Version of the Aspire CLI to download (default: unset)
@@ -726,7 +726,7 @@ function Get-InstallPath {
726
726
throw " Unable to determine user home directory. Please specify -InstallPath parameter."
727
727
}
728
728
729
- $defaultPath = Join-Path $homeDirectory " .aspire"
729
+ $defaultPath = Join-Path ( Join-Path $homeDirectory " .aspire" ) " bin "
730
730
return [System.IO.Path ]::GetFullPath($defaultPath )
731
731
}
732
732
You can’t perform that action at this time.
0 commit comments