Skip to content

Commit

Permalink
fix: compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Sopena Ballesteros committed Oct 28, 2024
1 parent f0cb22d commit 1041221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/delete_image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ pub mod command {
let mut image_xnames_boot_map = Vec::new();
for image_details_tuple in image_detail_tuple_vec {
let image_id = image_details_tuple.0.name;
if image_details_tuple.4 && image_id_vec.contains(image_id) {
if image_details_tuple.3 && image_id_vec.contains(&image_id.as_str()) {
image_xnames_boot_map.push(image_id);
}
}
Expand Down

0 comments on commit 1041221

Please sign in to comment.