Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kmd-fl committed Sep 16, 2024
1 parent 9079a89 commit 57a9682
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nox/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,10 @@ fn check_virtualization() -> eyre::Result<()> {
if output.contains("KVM acceleration can be used") {
Ok(())
} else {
Err(eyre::eyre!("Virtualization is not enabled. kvm-ok output:\n {}", output))
Err(eyre::eyre!(
"Virtualization is not enabled. kvm-ok output:\n {}",
output
))
}
}
Err(err) => {
Expand Down

0 comments on commit 57a9682

Please sign in to comment.