Merge pull request #1648 from lbryio/linux-path

fix linux path
This commit is contained in:
Sean Yesmunt 2018-06-19 21:55:32 -04:00 committed by GitHub
commit 82740c230d
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':
return `LBRY_${version}.dmg`;
case 'linux':
return `LBRY_${version}_amd64.deb`;
return `LBRY_${version}.deb`;
case 'win32':
return `LBRY_${version}.exe`;
default: