Skip to content

Commit

Permalink
fix(installer): windows user home path (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
aby913 authored Jan 13, 2025
1 parent f9546d6 commit 61eeb20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/installer/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (-Not $downloadCdnUrlFromEnv -eq "") {
$downloadUrl = $downloadCdnUrlFromEnv
}

$CLI_PROGRAM_PATH = "{0}\AppData\Local\Microsoft\WindowsApps\" -f $currentPath
$CLI_PROGRAM_PATH = "{0}\" -f $currentPath
if (-Not (Test-Path $CLI_PROGRAM_PATH)) {
New-Item -Path $CLI_PROGRAM_PATH -ItemType Directory
}
Expand Down

0 comments on commit 61eeb20

Please sign in to comment.