camweb: fix git fetch command.

Change-Id: Ibf4203324ea182750815df4dee48bd30cc70920b
This commit is contained in:
Brad Fitzpatrick 2013-08-23 00:08:13 -05:00
parent 0c6c9d597f
commit c8479f6fd4
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ func commitEmailLoop() error {
}
func pollCommits(dir string) {
cmd := exec.Command("git", "fetch", "origin", "master")
cmd := exec.Command("git", "fetch", "origin")
cmd.Dir = dir
out, err := cmd.CombinedOutput()
if err != nil {