diff --git a/src/configs/write_env.rs b/src/configs/write_env.rs index 4efaa22..3c5b01d 100644 --- a/src/configs/write_env.rs +++ b/src/configs/write_env.rs @@ -31,8 +31,8 @@ impl WriteEnv { print!("Enter the variable name: "); io::stdout().flush().expect("Failed to flush buffer"); io::stdin().read_line(&mut key).expect("Failed to read variable name"); - let key = key.trim().to_string().to_uppercase(); + let key = key.trim().to_string().to_uppercase(); let value = prompt_password("Enter the variable value: ").unwrap(); Self { key, value }