We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea6429a commit 6123a69Copy full SHA for 6123a69
1 file changed
src/checkers/preinstall/system.rs
@@ -248,7 +248,11 @@ impl SystemChecks {
248
249
let mut result = Passed;
250
if total_mem < MINIMUM_MEMORY {
251
- let reason = format!("total memory is less than {}", MINIMUM_MEMORY);
+ let reason = format!(
252
+ "total memory is {} but need at least {}",
253
+ ByteSize(total_mem),
254
+ ByteSize(MINIMUM_MEMORY)
255
+ );
256
result = Failed(reason);
257
}
258
CheckResult::new(&name, result)
0 commit comments