Skip to content

Commit

Permalink
merge: fix ours/theris
Browse files Browse the repository at this point in the history
  • Loading branch information
fcharlie committed Dec 17, 2024
1 parent 0746443 commit c8acb26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/zeta/merge_tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,12 @@ func (r *Repository) mergeTree(ctx context.Context, into, from, base *object.Com
return nil, err
}
r.DbgPrint("merge from %s to %s base: %s", from.Hash, into.Hash, base0)
a, err := from.Root(ctx)
a, err := into.Root(ctx)
if err != nil {
die_error("read tree '%s:' %v", from.Hash, err)
return nil, err
}
b, err := into.Root(ctx)
b, err := from.Root(ctx)
if err != nil {
die_error("read tree '%s:' %v", into.Hash, err)
return nil, err
Expand Down

0 comments on commit c8acb26

Please sign in to comment.