commit
c2c1be28b8
@ -8,8 +8,10 @@ module.exports = (lib) => {
|
|||||||
active: 1,
|
active: 1,
|
||||||
func: (e) => {
|
func: (e) => {
|
||||||
exec('cd ../../ & git pull', (error, stdout) => {
|
exec('cd ../../ & git pull', (error, stdout) => {
|
||||||
if(error === null)
|
if(error === null) {
|
||||||
e.reply(stdout);
|
e.reply( 'git pull suxxessfully.' );
|
||||||
|
//e.reply(stdout);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
desc: 'gitpuller'
|
desc: 'gitpuller'
|
||||||
|
@ -47,7 +47,7 @@ function Websrv(tlib) {
|
|||||||
if( lib.cfg.debugchannel === '#f0ck' ) {
|
if( lib.cfg.debugchannel === '#f0ck' ) {
|
||||||
exec('cd ../ & git pull', (error, stdout) => {
|
exec('cd ../ & git pull', (error, stdout) => {
|
||||||
if(error === null)
|
if(error === null)
|
||||||
lib.bot.send( lib.cfg.debugchannel, stdout, 'n0xy' );
|
lib.bot.send( lib.cfg.debugchannel, 'git pull suxxessfully.', 'n0xy' );
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user