add back removed log statement

This commit is contained in:
Feross Aboukhadijeh
2019-09-10 14:12:42 -07:00
committed by GitHub
parent 40005351b5
commit b34417b1fc

View File

@@ -518,7 +518,10 @@ function buildLinux (cb) {
}
installer(options).then(
() => cb(null),
() => {
console.log('Linux: Created deb.')
cb(null)
},
(err) => cb(err)
)
}