Skip to content

Commit 64b974d

Browse files
committed
fix: Update default installation path for Zed to reflect correct directory structure
1 parent 5916e0a commit 64b974d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/installation/install-with-zed.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $cliApiUrl = "https://api.github.com/repos/$cliRepoOwner/$cliRepoName/releases/l
3131

3232
# Set default install paths if not provided
3333
if (-not $ZedInstallPath) {
34-
$ZedInstallPath = Join-Path $env:LOCALAPPDATA "Programs\ZedTesting" # TODO: Change the end path to `Zed` from `ZedTesting`
34+
$ZedInstallPath = Join-Path $env:LOCALAPPDATA "Programs\Zed"
3535
}
3636
if (-not $CliInstallPath) {
3737
$CliInstallPath = Join-Path $env:LOCALAPPDATA $cliRepoName
@@ -50,7 +50,7 @@ function Install-ZedEditor {
5050
}
5151
}
5252

53-
53+
5454
$tempDir = New-TempDirectory -Prefix "zed-install"
5555

5656
try {

0 commit comments

Comments
 (0)