Resolve requested changes
This commit is contained in:
parent
aff402f6e0
commit
6255ccd253
1 changed files with 4 additions and 8 deletions
|
|
@ -517,14 +517,10 @@ function buildLinux (cb) {
|
|||
desktopTemplate: path.join(config.STATIC_PATH, 'linux/webtorrent-desktop.ejs')
|
||||
}
|
||||
|
||||
installer(options)
|
||||
.then(function () {
|
||||
console.log('Linux: Created deb.')
|
||||
cb(null)
|
||||
})
|
||||
.catch(function (err) {
|
||||
cb(err)
|
||||
})
|
||||
installer(options).then(
|
||||
() => cb(null),
|
||||
(err) => cb(err)
|
||||
)
|
||||
}
|
||||
|
||||
function packageZip (filesPath, cb) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue