Skip to content

Instantly share code, notes, and snippets.

@mmalecki
Created November 27, 2011 21:36
Show Gist options
  • Save mmalecki/1398187 to your computer and use it in GitHub Desktop.
Save mmalecki/1398187 to your computer and use it in GitHub Desktop.
Bot to make @bnoordhuis' life easier
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