Skip to content

Commit

Permalink
Fix base and head
Browse files Browse the repository at this point in the history
.....
  • Loading branch information
SuperSandro2000 committed Sep 24, 2024
1 parent 5b18411 commit e8727c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fn find_values_yaml(
let base_tree = repo::tree_for_commit_ref(&repo, base).context("while parsing base")?;
let head_tree = repo::tree_for_commit_ref(&repo, head).context("while parsing head")?;
let diff_tree = repo
.diff_tree_to_tree(Some(&head_tree), Some(&base_tree), None)
.diff_tree_to_tree(Some(&base_tree), Some(&head_tree), None)
.with_context(|| format!("cannot diff trees {} and {}", base_tree.id(), head_tree.id()))?;

let mut changes = Vec::<RepoChangeset<RealClient>>::new();
Expand Down

0 comments on commit e8727c9

Please sign in to comment.