Created
November 27, 2011 21:36
-
-
Save mmalecki/1398187 to your computer and use it in GitHub Desktop.
Bot to make @bnoordhuis' life easier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var irc = require('irc'); | |
var client = new irc.Client( | |
'irc.freenode.net', | |
'makeInstallBot', | |
{ channels: ['#node.js', '#nodejitsu'] } | |
); | |
client.on('message', function (from, to, msg) { | |
if (~msg.indexOf('`make install` is not implemented yet. Bug bnoordhuis about it in #node.js')) { | |
client.say(to, from + ': `make install` is not supported on current node.js `master` due to build system refactor. Please use latest stable tag (v0.6.x).'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment