Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
aby913 committed Jan 13, 2025
1 parent afd8c7d commit 8e39f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/installer/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$env:WSL_UTF8 = 1
$OutputEncoding = [System.Text.Encoding]::UTF8
$currentPath = $HOME
$currentPath = Get-Location
$architecture = $env:PROCESSOR_ARCHITECTURE
$downloadCdnUrlFromEnv = $env:DOWNLOAD_CDN_URL
$version = "#__VERSION__"
Expand Down 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 8e39f51

Please sign in to comment.