commit
8351f8a282
|
@ -9,8 +9,10 @@ module.exports = (lib) => {
|
|||
func: (e) => {
|
||||
exec('cd ../../ & git pull', (error, stdout) => {
|
||||
if(error === null) {
|
||||
if(!lib.debug)
|
||||
e.reply('git pull suxxessfully.');
|
||||
//e.reply(stdout);
|
||||
else
|
||||
lib.log(stdout);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
@ -138,6 +138,7 @@ module.exports = (lib) => {
|
|||
(err, res, data) => {
|
||||
if(!err) {
|
||||
var type = res.headers['content-type'];
|
||||
lib.log('MimeType: '+type);
|
||||
var length = res.headers['content-length'];
|
||||
if(cfg.allowedMimes.hasOwnProperty(type)) {
|
||||
//if(length <= cfg.maxFileSize) {
|
||||
|
|
|
@ -5,11 +5,7 @@ module.exports = (lib) => {
|
|||
level: 0,
|
||||
active: 1,
|
||||
func: (e) => {
|
||||
if(!(user = e.message.match(/^\!user( +@(.*))?/i)[2]))
|
||||
user = e.user.getNick();
|
||||
else
|
||||
user = user.trim();
|
||||
lib.bot.whois(user, e.network, (err, data) => {
|
||||
lib.bot.whois(!(user = e.message.match(/^\!user( +@(.*))?/i)[2])?e.user.getNick():user.trim(), e.network, (err, data) => {
|
||||
e.reply(data);
|
||||
});
|
||||
},
|
||||
|
|
|
@ -46,8 +46,12 @@ function Websrv(tlib) {
|
|||
lib.bot.send( lib.cfg.debugchannel, eventname + ' from ' + autor + ' ('+commit+') in branch '+branch, 'n0xy' );
|
||||
if( lib.cfg.debugchannel === '#f0ck' ) {
|
||||
exec('cd ../ & git pull', (error, stdout) => {
|
||||
if(error === null)
|
||||
if(error === null) {
|
||||
if(!lib.debug)
|
||||
lib.bot.send(lib.cfg.debugchannel, 'git pull suxxessfully.', 'n0xy');
|
||||
else
|
||||
lib.log(stdout);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user