Resolve requested changes

This commit is contained in:
Julen Garcia Leunda
2019-09-10 22:54:34 +02:00
parent aff402f6e0
commit 6255ccd253

View File

@@ -517,14 +517,10 @@ function buildLinux (cb) {
desktopTemplate: path.join(config.STATIC_PATH, 'linux/webtorrent-desktop.ejs') desktopTemplate: path.join(config.STATIC_PATH, 'linux/webtorrent-desktop.ejs')
} }
installer(options) installer(options).then(
.then(function () { () => cb(null),
console.log('Linux: Created deb.') (err) => cb(err)
cb(null) )
})
.catch(function (err) {
cb(err)
})
} }
function packageZip (filesPath, cb) { function packageZip (filesPath, cb) {