1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-08 06:12:27 +01:00

Fix clippy warnings with Rust 1.68

This commit is contained in:
Martin Nordholts
2023-03-14 21:19:14 +01:00
parent c5602f9766
commit 40a423905a
4 changed files with 6 additions and 6 deletions

View File

@@ -17,11 +17,11 @@ pub enum LineChange {
pub type LineChanges = HashMap<u32, LineChange>;
pub fn get_git_diff(filename: &Path) -> Option<LineChanges> {
let repo = Repository::discover(&filename).ok()?;
let repo = Repository::discover(filename).ok()?;
let repo_path_absolute = fs::canonicalize(repo.workdir()?).ok()?;
let filepath_absolute = fs::canonicalize(&filename).ok()?;
let filepath_absolute = fs::canonicalize(filename).ok()?;
let filepath_relative_to_repo = filepath_absolute.strip_prefix(&repo_path_absolute).ok()?;
let mut diff_options = DiffOptions::new();