Skip to content

Commit

Permalink
replace appimage with deb
Browse files Browse the repository at this point in the history
  • Loading branch information
utkubakir committed Apr 17, 2024
1 parent 533d91a commit 95c907f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/landing/src/app/Downloads/Platform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const platforms = {
name: 'Linux',
os: 'linux',
icon: LinuxLogo,
version: 'AppImage',
version: 'deb',
links: [{ name: 'x86_64', arch: 'x86_64' }]
},
docker: { name: 'Docker', icon: Docker },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const tauriTarget = z.union([z.literal('linux'), z.literal('windows'), z.literal
const tauriArch = z.union([z.literal('x86_64'), z.literal('aarch64')]);

const extensions = {
linux: 'AppImage',
linux: 'deb',
windows: 'msi',
darwin: 'dmg'
} as const satisfies Record<z.infer<typeof tauriTarget>, string>;
Expand Down

0 comments on commit 95c907f

Please sign in to comment.