Fix upgrade filenames on Mac and Windows
This commit is contained in:
parent
c7bab43b7b
commit
e9dc3324cb
1 changed files with 2 additions and 2 deletions
|
@ -107,11 +107,11 @@ export const selectUpgradeFilename = createSelector(
|
|||
(platform, version) => {
|
||||
switch (platform) {
|
||||
case 'darwin':
|
||||
return `LBRY-${version}.dmg`;
|
||||
return `LBRY_${version}.dmg`;
|
||||
case 'linux':
|
||||
return `LBRY_${version}_amd64.deb`;
|
||||
case 'win32':
|
||||
return `LBRY.Setup.${version}.exe`;
|
||||
return `LBRY_${version}.exe`;
|
||||
default:
|
||||
throw 'Unknown platform';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue