Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
pei-mysten committed Jun 19, 2024
1 parent 32e9961 commit f9f799a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/suiop-cli/src/cli/ci/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async fn send_image_request(token: &str, action: &ImageAction) -> Result<()> {
let ref_name = format!("{}:{}", ref_type, ref_val);
let image_name = image_name.clone().unwrap_or("app".to_string());
let image_tag = image_tag.clone().unwrap_or("".to_string());
let mut image_info = format!("{}", image_name);
let mut image_info = image_name;
if !image_tag.is_empty() {
image_info += &format!(":{}", image_tag);
}
Expand Down

0 comments on commit f9f799a

Please sign in to comment.