mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
Fix for unhandled err
This commit is contained in:
parent
0d0d1e083a
commit
da549cd637
@ -65,7 +65,7 @@ module.exports = {
|
||||
winston.info('[SERVER.System] Cleaning install leftovers...')
|
||||
return fs.removeAsync(self._installDir).then(() => {
|
||||
winston.info('[SERVER.System] Restarting Wiki.js...')
|
||||
return pm2.restartAsync('wiki').catch(err => {
|
||||
return pm2.restartAsync('wiki').catch(err => { // eslint-disable-line handle-callback-err
|
||||
winston.error('Unable to restart Wiki.js via pm2... Do a manual restart!')
|
||||
process.exit()
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user