Skip to content

Commit 64e5992

Browse files
committed
Fix download slugs for arm64 builds
1 parent 24c473f commit 64e5992

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/data/download-dictionary.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
1919
return [
2020
{
2121
os: 'mac',
22-
slug: 'osx-dmg',
23-
href: '/download/osx-dmg',
22+
slug: 'osx-dmg-arm64',
23+
href: '/download/osx-dmg-arm64',
2424
text: 'MacOS DMG',
2525
defaultText: 'macOS',
2626
subtext: 'Apple Silicon',
@@ -104,8 +104,8 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
104104
},
105105
{
106106
os: 'linux',
107-
slug: 'linux-standalone',
108-
href: '/download/linux-standalone',
107+
slug: 'linux-standalone-arm64',
108+
href: '/download/linux-standalone-arm64',
109109
text: 'Linux Zip',
110110
subtext: 'arm64',
111111
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-linux-arm64.zip`,

0 commit comments

Comments
 (0)