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

update deprecated method

Signed-off-by: nachoparker <nacho@ownyourbits.com>
This commit is contained in:
nachoparker 2019-09-22 19:54:27 -06:00
parent efb865eb74
commit b0deeaf52d
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -10,7 +10,7 @@ dependencies = [
[[package]]
name = "dutree"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"getopts 0.2.21 (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.9"
version = "0.2.10"
authors = ["nacho <nacho@ownyourbits.com>"]
description = "Command line tool to analyze disk usage"
repository = "https://github.com/nachoparker/dutree"

View File

@ -509,7 +509,7 @@ fn color_from_path<'a>( path : &Path, color_dict : &'a HashMap<String, String> )
if let Some( ext_str ) = path.extension() {
for ( key , _ ) in color_dict {
if &key[..2] != "*." { continue }
let k = key.trim_left_matches( "*." );
let k = key.trim_start_matches( "*." );
if ext_str == k {
return Some( &color_dict.get( key ).unwrap() );
}