diff --git a/src/websrv.js b/src/websrv.js index 65c86ee..8f754de 100644 --- a/src/websrv.js +++ b/src/websrv.js @@ -35,20 +35,21 @@ function Websrv(tlib) { var autor = body.user_name; var branch = body.ref.split('/')[2]; - var commit = ""; - try { - commit = body.commits[body.commits.length-1].message.replace('\n','').trim(); - } - catch(ex) { - commit = body.commits[body.commits.length-2].message.replace('\n','').trim(); - } - 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) - lib.bot.send( lib.cfg.debugchannel, stdout, 'n0xy' ); - }); + if(branch === "master") { + var commit = ""; + try { + commit = body.commits[body.commits.length-1].message.replace('\n','').trim(); + } + catch(ex) { + commit = body.commits[body.commits.length-2].message.replace('\n','').trim(); + } + 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) + lib.bot.send( lib.cfg.debugchannel, stdout, 'n0xy' ); + }); + } } }); res.writeHead(200, { 'Content-Type': 'text/html' }); @@ -71,7 +72,6 @@ function Websrv(tlib) { '.mp3': 'audio/mpeg', '.mp4': 'video/mp4', '.webm': 'video/webm', - '.css': 'text/css', '.ogg': 'audio/ogg' }; if(filePath == "./index.html") { // mainpage