Skip to content

Commit 4e51fff

Browse files
committed
fix up
1 parent a690f68 commit 4e51fff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/scripts/get-aspire-cli.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Pass a specific version to get CLI for that version.
1818
1919
.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)
2121
2222
.PARAMETER Version
2323
Version of the Aspire CLI to download (default: unset)
@@ -726,7 +726,7 @@ function Get-InstallPath {
726726
throw "Unable to determine user home directory. Please specify -InstallPath parameter."
727727
}
728728

729-
$defaultPath = Join-Path $homeDirectory ".aspire"
729+
$defaultPath = Join-Path (Join-Path $homeDirectory ".aspire") "bin"
730730
return [System.IO.Path]::GetFullPath($defaultPath)
731731
}
732732

0 commit comments

Comments
 (0)