fix linux path

Forgot to update the path in the last PR. It downloads as: LBRY_xxxx.deb
This commit is contained in:
Thomas Zarebczan 2018-06-19 19:02:23 -04:00 committed by GitHub
parent 3ad8feb025
commit d383e57b01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ export const selectUpgradeFilename = createSelector(
case 'darwin': case 'darwin':
return `LBRY_${version}.dmg`; return `LBRY_${version}.dmg`;
case 'linux': case 'linux':
return `LBRY_${version}_amd64.deb`; return `LBRY_${version}.deb`;
case 'win32': case 'win32':
return `LBRY_${version}.exe`; return `LBRY_${version}.exe`;
default: default: