Skip to content

Commit 65ba1f6

Browse files
authored
fix(download): update beta asset names from electron to desktop (#24908)
1 parent d37e5af commit 65ba1f6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

packages/console/app/src/routes/download/[channel]/[platform].ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ const prodAssetNames: Record<string, string> = {
1111
} satisfies Record<DownloadPlatform, string>
1212

1313
const betaAssetNames: Record<string, string> = {
14-
"darwin-aarch64-dmg": "opencode-electron-mac-arm64.dmg",
15-
"darwin-x64-dmg": "opencode-electron-mac-x64.dmg",
16-
"windows-x64-nsis": "opencode-electron-win-x64.exe",
17-
"linux-x64-deb": "opencode-electron-linux-amd64.deb",
18-
"linux-x64-appimage": "opencode-electron-linux-x86_64.AppImage",
19-
"linux-x64-rpm": "opencode-electron-linux-x86_64.rpm",
14+
"darwin-aarch64-dmg": "opencode-desktop-mac-arm64.dmg",
15+
"darwin-x64-dmg": "opencode-desktop-mac-x64.dmg",
16+
"windows-x64-nsis": "opencode-desktop-win-x64.exe",
17+
"linux-x64-deb": "opencode-desktop-linux-amd64.deb",
18+
"linux-x64-appimage": "opencode-desktop-linux-x86_64.AppImage",
19+
"linux-x64-rpm": "opencode-desktop-linux-x86_64.rpm",
2020
} satisfies Record<DownloadPlatform, string>
2121

2222
// Doing this on the server lets us preserve the original name for platforms we don't care to rename for

0 commit comments

Comments
 (0)