Task #88692 - added.err

back to task #88692
download
Error: CLIPPY_WARNING:
crates/xtask/src/tmt.rs:329:30: warning: useless use of `format!`
#      |
#  329 |             .with_context(|| format!("Saving container image to tar"))?;
#      |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Saving container image to tar".to_string()`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#useless_format

Error: CLIPPY_WARNING:
crates/xtask/src/tmt.rs:425:13: warning: this `if` statement can be collapsed
#      |
#  425 | /             if variant_id == "coreos" {
#  426 | |                 if distro.starts_with("fedora") {
#  427 | |                     opts.push("--filesystem=xfs".to_string());
#  428 | |                 }
#  429 | |             }
#      | |_____________^
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#collapsible_if
#      = note: `#[warn(clippy::collapsible_if)]` on by default
#  help: collapse nested if block
#      |
#  425 ~             if variant_id == "coreos"
#  426 ~                 && distro.starts_with("fedora") {
#  427 |                     opts.push("--filesystem=xfs".to_string());
#  428 ~                 }
#      |