Skip to content

Commit

Permalink
chore(cli): fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
onkoe committed Nov 2, 2024
1 parent bf4966b commit 724603f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/subcommands/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub async fn run(
)
});

if let Ok(_) = result {
if result.is_ok() {
match input.trim().to_ascii_lowercase().as_str() {
"yes" | "y" | "t" | "true" | "yuh" | "" => {
break;
Expand Down

0 comments on commit 724603f

Please sign in to comment.