fix: case dependency and sorting order (#661) (#662)

This commit is contained in:
Alexei Yuzhakov 2019-02-03 21:50:08 +07:00 committed by Henrique Dias
parent 4a2573830e
commit 17b514510b
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package files
import ( import (
"sort" "sort"
"strings"
"github.com/maruel/natural" "github.com/maruel/natural"
) )
@ -68,7 +69,7 @@ func (l byName) Less(i, j int) bool {
return false return false
} }
return natural.Less(l.Items[i].Name, l.Items[j].Name) return natural.Less(strings.ToLower(l.Items[j].Name), strings.ToLower(l.Items[i].Name))
} }
// By Size // By Size