Merge pull request #21 from lbryio/fix-upgrade-filenames

Fix filenames for downloaded upgrades
This commit is contained in:
alexliebowitz 2017-03-24 03:22:05 -04:00 committed by GitHub
commit 724ad79fcb

View file

@ -47,9 +47,9 @@ var App = React.createClass({
if (os.platform() == 'darwin') {
return `LBRY-${this._version}.dmg`;
} else if (os.platform() == 'linux') {
return `LBRY-${this._version}.deb`;
return `LBRY_${this._version}_amd64.deb`;
} else {
return `LBRY-${this._version}_amd64.deb`;
return `LBRY.Setup.${this._version}.exe`;
}
},
getInitialState: function() {