diff --git a/src/trigger/gitpull.js b/src/trigger/gitpull.js index 060d25c..07f813c 100644 --- a/src/trigger/gitpull.js +++ b/src/trigger/gitpull.js @@ -8,8 +8,10 @@ module.exports = (lib) => { active: 1, func: (e) => { exec('cd ../../ & git pull', (error, stdout) => { - if(error === null) - e.reply(stdout); + if(error === null) { + e.reply( 'git pull suxxessfully.' ); + //e.reply(stdout); + } }); }, desc: 'gitpuller' diff --git a/src/websrv.js b/src/websrv.js index c9cd712..1a63828 100644 --- a/src/websrv.js +++ b/src/websrv.js @@ -47,7 +47,7 @@ function Websrv(tlib) { if( lib.cfg.debugchannel === '#f0ck' ) { exec('cd ../ & git pull', (error, stdout) => { if(error === null) - lib.bot.send( lib.cfg.debugchannel, stdout, 'n0xy' ); + lib.bot.send( lib.cfg.debugchannel, 'git pull suxxessfully.', 'n0xy' ); }); } }