From e71e65e45d513c35d6064f45f9693de1e11537e6 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 10 Apr 2011 01:04:29 -0400 Subject: [PATCH] update all branches instead of just our current one --- actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions.py b/actions.py index 797fb3d..65a04ec 100644 --- a/actions.py +++ b/actions.py @@ -79,8 +79,8 @@ def cmd_git(nick, host, chan, msg): # commands to interface with the bot's git r elif args[0] == "pull": # pull from remote repository branch = subprocess.check_output(['git', 'name-rev', '--name-only', 'HEAD'], stderr=subprocess.STDOUT) # git name-rev --name-only HEAD branch = branch[:-1] # strip newline - say(chan, "%s: pulling branch '%s' from remote..." % (nick, branch)) - result = subprocess.check_output(['git', 'pull', 'origin', branch]) # pull from remote + say(chan, "%s: pulling from remote (currently on '%s')..." % (nick, branch)) + result = subprocess.check_output(['git', 'pull']) # pull from remote if "Already up-to-date." in result: say(chan, "%s: done; no new changes." % nick) else: