speculator: Specify merge target

This commit is contained in:
Daniel Wagner-Hall 2015-10-09 10:43:27 +01:00
parent d6bdde4cee
commit a0cf485919

View file

@ -86,7 +86,7 @@ func gitFetchAndMerge(path string) error {
if err := runGitCommand(path, []string{"fetch"}); err != nil {
return err
}
return runGitCommand(path, []string{"merge"})
return runGitCommand(path, []string{"merge", "origin/master"})
}
func runGitCommand(path string, args []string) error {