Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeckt committed Jan 16, 2025
1 parent 9a2063d commit 7baccf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ impl Interface {

rename(tmp_repo_path, repo_path)?;

*lock = Repository::open(&repo_path)?;
*lock = Repository::open(repo_path)?;

drop(lock);

remove_dir_all("dummy.git")?;

Expand Down

0 comments on commit 7baccf8

Please sign in to comment.