about summary refs log tree commit diff
path: root/clippy_dev/src/setup/git_hook.rs
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2022-10-06 09:19:29 +0200
committerPhilipp Krones <hello@philkrones.com>2022-10-06 09:19:29 +0200
commite2808afd60ea0f0e17c3aced354adfd58a1f825f (patch)
tree3d9bcb2d75f4de029f4720c7c5462cd7e09fcf0d /clippy_dev/src/setup/git_hook.rs
parentda16cc1da9814710e637ff242b71768a4d3724b7 (diff)
parent887ba0c5a489e28b55ff84244e1dc153861d16ad (diff)
Merge remote-tracking branch 'upstream/master' into rustup
Diffstat (limited to 'clippy_dev/src/setup/git_hook.rs')
-rw-r--r--clippy_dev/src/setup/git_hook.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/clippy_dev/src/setup/git_hook.rs b/clippy_dev/src/setup/git_hook.rs
index 3fbb77d5923..1de5b1940ba 100644
--- a/clippy_dev/src/setup/git_hook.rs
+++ b/clippy_dev/src/setup/git_hook.rs
@@ -30,10 +30,7 @@ pub fn install_hook(force_override: bool) {
             println!("info: the hook can be removed with `cargo dev remove git-hook`");
             println!("git hook successfully installed");
         },
-        Err(err) => eprintln!(
-            "error: unable to copy `{}` to `{}` ({})",
-            HOOK_SOURCE_FILE, HOOK_TARGET_FILE, err
-        ),
+        Err(err) => eprintln!("error: unable to copy `{HOOK_SOURCE_FILE}` to `{HOOK_TARGET_FILE}` ({err})"),
     }
 }
 
@@ -77,7 +74,7 @@ pub fn remove_hook() {
 
 fn delete_git_hook_file(path: &Path) -> bool {
     if let Err(err) = fs::remove_file(path) {
-        eprintln!("error: unable to delete existing pre-commit git hook ({})", err);
+        eprintln!("error: unable to delete existing pre-commit git hook ({err})");
         false
     } else {
         true