From 2b51554ff59d1e5cbf8dd2db65d278b0202a9102 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 27 Jun 2026 03:52:05 +0900 Subject: refactor: fix compiler warnings and clippy warnings --- crates/shirabe/src/repository/path_repository.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/shirabe/src/repository/path_repository.rs') diff --git a/crates/shirabe/src/repository/path_repository.rs b/crates/shirabe/src/repository/path_repository.rs index 2f99ceb..e5dff0e 100644 --- a/crates/shirabe/src/repository/path_repository.rs +++ b/crates/shirabe/src/repository/path_repository.rs @@ -276,7 +276,7 @@ impl PathRepository { args }); if reference == "auto" - && shirabe_php_shim::is_dir(&format!("{}/.git", path.trim_end_matches('/'))) + && shirabe_php_shim::is_dir(format!("{}/.git", path.trim_end_matches('/'))) && self .process .borrow_mut() -- cgit v1.3.1