From 4c6a287f4d18161ed263bb37905edb2566f81245 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Fri, 16 Dec 2022 18:37:45 +0000 Subject: Switch to using ATUIN_LOG instead of RUST_LOG (#642) * Switch to using ATUIN_LOG instead of RUST_LOG * Stop clippy complaining * I should know better - clippy is never happy :( --- src/command/init.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/command/init.rs') diff --git a/src/command/init.rs b/src/command/init.rs index 37453f93..7faff036 100644 --- a/src/command/init.rs +++ b/src/command/init.rs @@ -12,17 +12,17 @@ pub enum Cmd { fn init_zsh() { let full = include_str!("../shell/atuin.zsh"); - println!("{}", full); + println!("{full}"); } fn init_bash() { let full = include_str!("../shell/atuin.bash"); - println!("{}", full); + println!("{full}"); } fn init_fish() { let full = include_str!("../shell/atuin.fish"); - println!("{}", full); + println!("{full}"); } impl Cmd { -- cgit v1.3.1