summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/options.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options.rs b/src/options.rs
index 6b79278..ab48980 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -1,5 +1,5 @@
use dua::ByteFormat as LibraryByteFormat;
-use std::{env, path::PathBuf};
+use std::path::PathBuf;
#[derive(PartialEq, Eq, Debug, Clone, Copy, clap::ValueEnum)]
pub enum ByteFormat {
@@ -27,10 +27,10 @@ impl From<ByteFormat> for LibraryByteFormat {
}
fn dft_format() -> ByteFormat {
- if env::consts::OS != "macos" {
- ByteFormat::Binary
- } else {
+ if std::env::consts::OS == "macos" {
ByteFormat::Metric
+ } else {
+ ByteFormat::Binary
}
}