1
0
Fork 0
mirror of https://github.com/nachoparker/dutree synced 2024-04-27 04:05:02 +02:00

fix ordering in collections

This commit is contained in:
Ignacio Nunez 2018-06-20 12:55:00 +02:00
parent 98470a8afc
commit b047cbf8f1
3 changed files with 4 additions and 3 deletions

2
Cargo.lock generated
View File

@ -8,7 +8,7 @@ dependencies = [
[[package]]
name = "dutree"
version = "0.2.4"
version = "0.2.8"
dependencies = [
"getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "dutree"
version = "0.2.7"
version = "0.2.8"
authors = ["nacho <nacho@ownyourbits.com>"]
description = "Command line tool to analyze disk usage"
repository = "https://github.com/nachoparker/dutree"

View File

@ -59,7 +59,7 @@ use std::os::unix::fs::MetadataExt;
use std::env;
use std::collections::HashMap;
const VERSTR : &str = "v0.2.7";
const VERSTR : &str = "v0.2.8";
const DEF_WIDTH : u16 = 80;
pub enum XResult<T,S> {
@ -562,6 +562,7 @@ pub fn run( cfg: &Config ) {
bytes += e.bytes;
entries.push( e );
}
entries.sort_unstable_by( |a, b| b.bytes.cmp( &a.bytes ) );
let len = entries.len();
if len > 0 {
entries[len-1].last = true;