greload updates submodules [#100]

This commit is contained in:
reality 2013-01-04 16:13:45 +00:00
parent e9c4be17a1
commit b50f4d25b8

View File

@ -44,9 +44,11 @@ var admin = function(dbot) {
// Do a git pull and reload
'greload': function(event) {
var child = exec("git pull", function (error, stdout, stderr) {
event.reply(dbot.t('gpull'));
commands.reload(event);
exec("git pull", function (error, stdout, stderr) {
exec("git submodule update", function (error, stdout, stderr) {
event.reply(dbot.t('gpull'));
commands.reload(event);
}.bind(this));
}.bind(this));
},