Fix filenames for downloaded upgrades #21

Merged
alexliebowitz merged 1 commit from fix-upgrade-filenames into master 2017-03-24 08:22:06 +01:00
Showing only changes of commit 16122216bb - Show all commits

View file

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