Skip to content

Commit

Permalink
Remove trailing newline when getting secret
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Lloyd committed Mar 8, 2024
1 parent f51a7fc commit 9ea694d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub async fn handle_get(config_dir: &Path, name: String, json: bool) -> Result<(
if json {
println!("{}", cleartext.to_json()?)
} else {
println!("{}", cleartext.value)
print!("{}", cleartext.value)
}

Ok(())
Expand Down

0 comments on commit 9ea694d

Please sign in to comment.